From 98331796b28765f9784da44c4be78e0551cb78bf Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 17 Jan 2023 00:42:38 +0100 Subject: [PATCH] Fix bug in LZHAM debug log formatting Should be '%llu' or '%zu' for size types. --- r5dev/thirdparty/lzham/lzham_vector.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/thirdparty/lzham/lzham_vector.cpp b/r5dev/thirdparty/lzham/lzham_vector.cpp index ca3f449d..c2268050 100644 --- a/r5dev/thirdparty/lzham/lzham_vector.cpp +++ b/r5dev/thirdparty/lzham/lzham_vector.cpp @@ -37,7 +37,7 @@ namespace lzham return false; char buf[256]; - sprintf_s(buf, sizeof(buf), "vector: lzham_realloc() failed allocating %u bytes", desired_size); + sprintf_s(buf, sizeof(buf), "vector: lzham_realloc() failed allocating %llu bytes", desired_size); LZHAM_FAIL(buf); } m_p = new_p; @@ -51,7 +51,7 @@ namespace lzham return false; char buf[256]; - sprintf_s(buf, sizeof(buf), "vector: lzham_malloc() failed allocating %u bytes", desired_size); + sprintf_s(buf, sizeof(buf), "vector: lzham_malloc() failed allocating %llu bytes", desired_size); LZHAM_FAIL(buf); }