| author | |
| committer | |
| log | a5dcd07382aca0d429d31342de28f786c5f7fd20 |
| tree | 711a4ecd4598cdf63b6b1df16e6ecbbb51c390c8 |
| parent | 153cd4da0c723fe949bbf9eaf9d780500320bffc |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/build.zig+1-1| ... | ... | @@ -543,7 +543,7 @@ pub const Builder = struct { |
| 543 | 543 | .Scalar => |s| { |
| 544 | 544 | const n = std.fmt.parseInt(T, s, 10) catch |err| switch (err) { |
| 545 | 545 | error.Overflow => { |
| 546 | warn("-D{s} value {} cannot fit into type {s}.\n\n", .{ name, s, @typeName(T) }); | |
| 546 | warn("-D{s} value {s} cannot fit into type {s}.\n\n", .{ name, s, @typeName(T) }); | |
| 547 | 547 | self.markInvalidUserInput(); |
| 548 | 548 | return null; |
| 549 | 549 | }, |