aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/107_files2.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/107_files2.zig')
-rw-r--r--exercises/107_files2.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/107_files2.zig b/exercises/107_files2.zig
index 18d59ef..dadfdf6 100644
--- a/exercises/107_files2.zig
+++ b/exercises/107_files2.zig
@@ -45,7 +45,7 @@ pub fn main() !void {
// Woah, too screamy, I know you're excited for zigling time but tone it down a bit
// Can you print only what we read from the file ?
- std.debug.print("Successfully Read {} byte: {s}\n", .{
+ std.debug.print("Successfully Read {d} byte: {s}\n", .{
byte_read,
content, // change this line only
});