about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-10-19 19:15:26 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-10-19 19:15:26 +0200
commit95182c9f2142d7edf7bc12fc0de1626efe62cdd3 (patch)
treefb4fb1455d14bcccbeefadfb46b8b1c77f9891bd
parentb95f0a0ffa37ce558921de3bcb5104091d60dd33 (diff)
downloadbox64-95182c9f2142d7edf7bc12fc0de1626efe62cdd3.tar.gz
box64-95182c9f2142d7edf7bc12fc0de1626efe62cdd3.zip
[TRACE] Move the fast _exit message to dynarec_log instead
-rw-r--r--src/wrapped/wrappedlibc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c
index c3d9da2a..51e255e7 100644
--- a/src/wrapped/wrappedlibc.c
+++ b/src/wrapped/wrappedlibc.c
@@ -3882,7 +3882,7 @@ EXPORT void my__exit(x64emu_t* emu, int code)
     if(emu->flags.quitonexit || emu->quit) {
         _exit(code);
     }
-    printf_log(LOG_INFO, "Fast _exit called\n");
+    dynarec_log(LOG_INFO, "Fast _exit called\n");
     emu->quit = 1;
     box64_exit_code = code;
     SerializeAllMapping();   // just to be safe