authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2021-02-02 10:00:13-05:00
committergravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2021-02-02 10:00:13-05:00
log8661a13b748d25d796c0246dad7ad2584d9b0824
treea8482849644fafad4304adda7e3618a81ee465dd
parent7a01d396ee4bb38e6421a852dc3f891d856dfda8
signature Commit is signed but in an unrecognized format.

fix superfluous fmt specifier in update_glibc


1 files changed, 1 insertions(+), 1 deletions(-)

tools/update_glibc.zig+1-1
...@@ -185,7 +185,7 @@ pub fn main() !void {...@@ -185,7 +185,7 @@ pub fn main() !void {
185 };185 };
186 const max_bytes = 10 * 1024 * 1024;186 const max_bytes = 10 * 1024 * 1024;
187 const contents = std.fs.cwd().readFileAlloc(allocator, abi_list_filename, max_bytes) catch |err| {187 const contents = std.fs.cwd().readFileAlloc(allocator, abi_list_filename, max_bytes) catch |err| {
188 std.debug.warn("unable to open {s}: {s}\n", .{ abi_list_filename, err });188 std.debug.warn("unable to open {s}: {}\n", .{ abi_list_filename, err });
189 std.process.exit(1);189 std.process.exit(1);
190 };190 };
191 var lines_it = std.mem.tokenize(contents, "\n");191 var lines_it = std.mem.tokenize(contents, "\n");