From 397db6decc5fe8560fe3690ac3066c1f8d27e0fc Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 16 Aug 2025 11:53:44 +0200 Subject: [PATCH] Fix print --- src/analyzer/analysis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analyzer/analysis.cpp b/src/analyzer/analysis.cpp index 3f063a77..f2cd6b2a 100644 --- a/src/analyzer/analysis.cpp +++ b/src/analyzer/analysis.cpp @@ -99,7 +99,7 @@ namespace void handle_thread_set_name(const analysis_context& c, const emulator_thread& t) { - c.win_emu->log.print(color::blue, "Setting thread (%d) name: %s\n", t.id, u16_to_u8(t.name).c_str()); + c.win_emu->log.print(color::blue, "Setting thread (%u) name: %s\n", t.id, u16_to_u8(t.name).c_str()); } void handle_thread_switch(const analysis_context& c, const emulator_thread& current_thread,