From f409457925918da254080be9ddcbe1182073d1e2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 2 Jul 2025 17:49:29 -0700 Subject: compiler: fix a bunch of format strings --- src/IncrementalDebugServer.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/IncrementalDebugServer.zig') diff --git a/src/IncrementalDebugServer.zig b/src/IncrementalDebugServer.zig index 531b71b4e8..80717af42d 100644 --- a/src/IncrementalDebugServer.zig +++ b/src/IncrementalDebugServer.zig @@ -234,7 +234,7 @@ fn handleCommand(zcu: *Zcu, output: *std.ArrayListUnmanaged(u8), cmd_str: []cons for (unit_info.deps.items, 0..) |dependee, i| { try w.print("[{d}] ", .{i}); switch (dependee) { - .src_hash, .namespace, .namespace_name, .zon_file, .embed_file => try w.print("{}", .{zcu.fmtDependee(dependee)}), + .src_hash, .namespace, .namespace_name, .zon_file, .embed_file => try w.print("{f}", .{zcu.fmtDependee(dependee)}), .nav_val, .nav_ty => |nav| try w.print("{s} {d}", .{ @tagName(dependee), @intFromEnum(nav) }), .interned => |ip_index| switch (ip.indexToKey(ip_index)) { .struct_type, .union_type, .enum_type => try w.print("type {d}", .{@intFromEnum(ip_index)}), -- cgit v1.2.3