From b35b70ab330ce02e23713ca87285c904e6249717 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Thu, 4 Mar 2021 12:46:19 -0600 Subject: [PATCH] fixed a test case --- tests/aoc-2020/day8.onyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/aoc-2020/day8.onyx b/tests/aoc-2020/day8.onyx index 139345a9..49d18718 100644 --- a/tests/aoc-2020/day8.onyx +++ b/tests/aoc-2020/day8.onyx @@ -56,7 +56,7 @@ main :: (args: [] cstr) { reader.skip_bytes(^file, 1); sign := reader.read_byte(^file); - val := reader.read_u32(^file); + val := cast(i32) reader.read_u32(^file); reader.advance_line(^file); -- 2.25.1