From 8426ffa238a47e1dd7b832c22e92cb2eb45bc0d3 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Mon, 24 Jan 2022 11:34:36 -0500 Subject: [PATCH] Fix wxWidgets invalid string specifier assertion. (cherry picked from commit ab184ba9f3892342ec394ee52319446bef7f2317) --- common/gal/opengl/gpu_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/gal/opengl/gpu_manager.cpp b/common/gal/opengl/gpu_manager.cpp index 1d141ed5c6..fad533a74f 100644 --- a/common/gal/opengl/gpu_manager.cpp +++ b/common/gal/opengl/gpu_manager.cpp @@ -219,7 +219,7 @@ void GPU_CACHED_MANAGER::EndDrawing() cntDraw.Stop(); KI_TRACE( traceGalProfile, - "Cached manager size: VBO size %u iranges %llu max elt size %u drawcalls %u\n", + "Cached manager size: VBO size %u iranges %zu max elt size %u drawcalls %u\n", cached->AllItemsSize(), m_vranges.size(), m_indexBufMaxSize, drawCalls ); KI_TRACE( traceGalProfile, "Timing: %s\n", cntDraw.to_string() );