fix superfluous fmt specifier in update_glibc

This commit is contained in:
Michael Dusan
2021-02-02 10:00:13 -05:00
parent 7a01d396ee
commit 8661a13b74

View File

@@ -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");