aboutsummaryrefslogtreecommitdiff
path: root/test/cases/enum_with_members.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/cases/enum_with_members.zig')
-rw-r--r--test/cases/enum_with_members.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cases/enum_with_members.zig b/test/cases/enum_with_members.zig
index b338b9b014..5abb297674 100644
--- a/test/cases/enum_with_members.zig
+++ b/test/cases/enum_with_members.zig
@@ -8,8 +8,8 @@ const ET = enum {
pub fn print(a: &const ET, buf: []u8) -> %usize {
return switch (*a) {
- ET.SINT => |x| { io.bufPrintInt(buf, x, 10, false) },
- ET.UINT => |x| { io.bufPrintInt(buf, x, 10, false) },
+ ET.SINT => |x| { io.bufPrintInt(buf, x, 10, false, 0) },
+ ET.UINT => |x| { io.bufPrintInt(buf, x, 10, false, 0) },
}
}
};