diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_math.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_math.cpp b/tests/test_math.cpp index 26c2aa2088..85cfdf7d2c 100644 --- a/tests/test_math.cpp +++ b/tests/test_math.cpp @@ -529,7 +529,7 @@ MainLoop *test() { ERR_FAIL_COND_V_MSG(!fa, nullptr, "Could not open file: " + test); Vector<uint8_t> buf; - int flen = fa->get_len(); + uint64_t flen = fa->get_len(); buf.resize(fa->get_len() + 1); fa->get_buffer(buf.ptrw(), flen); buf.write[flen] = 0; |