fix unspecified fmt

This commit is contained in:
rgreenblatt 2021-02-20 18:02:10 -05:00 committed by Veikka Tuominen
parent 153cd4da0c
commit a5dcd07382

View File

@ -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;
},