From 8661a13b748d25d796c0246dad7ad2584d9b0824 Mon Sep 17 00:00:00 2001 From: Michael Dusan Date: Tue, 2 Feb 2021 10:00:13 -0500 Subject: [PATCH] fix superfluous fmt specifier in update_glibc --- tools/update_glibc.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update_glibc.zig b/tools/update_glibc.zig index f86e47e8eb..77be81d6d5 100644 --- a/tools/update_glibc.zig +++ b/tools/update_glibc.zig @@ -185,7 +185,7 @@ pub fn main() !void { }; const max_bytes = 10 * 1024 * 1024; const contents = std.fs.cwd().readFileAlloc(allocator, abi_list_filename, max_bytes) catch |err| { - std.debug.warn("unable to open {s}: {s}\n", .{ abi_list_filename, err }); + std.debug.warn("unable to open {s}: {}\n", .{ abi_list_filename, err }); std.process.exit(1); }; var lines_it = std.mem.tokenize(contents, "\n");