From: Brendan Hansen Date: Thu, 4 Mar 2021 18:46:19 +0000 (-0600) Subject: fixed a test case X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=b35b70ab330ce02e23713ca87285c904e6249717;p=onyx.git fixed a test case --- 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);