mirror of
https://github.com/ziglang/zig.git
synced 2026-02-06 14:37:04 +00:00
fix unspecified fmt
This commit is contained in:
parent
153cd4da0c
commit
a5dcd07382
@ -543,7 +543,7 @@ pub const Builder = struct {
|
||||
.Scalar => |s| {
|
||||
const n = std.fmt.parseInt(T, s, 10) catch |err| switch (err) {
|
||||
error.Overflow => {
|
||||
warn("-D{s} value {} cannot fit into type {s}.\n\n", .{ name, s, @typeName(T) });
|
||||
warn("-D{s} value {s} cannot fit into type {s}.\n\n", .{ name, s, @typeName(T) });
|
||||
self.markInvalidUserInput();
|
||||
return null;
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user