diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-10-19 19:15:26 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-10-19 19:15:26 +0200 |
| commit | 95182c9f2142d7edf7bc12fc0de1626efe62cdd3 (patch) | |
| tree | fb4fb1455d14bcccbeefadfb46b8b1c77f9891bd /src/wrapped/wrappedlibc.c | |
| parent | b95f0a0ffa37ce558921de3bcb5104091d60dd33 (diff) | |
| download | box64-95182c9f2142d7edf7bc12fc0de1626efe62cdd3.tar.gz box64-95182c9f2142d7edf7bc12fc0de1626efe62cdd3.zip | |
[TRACE] Move the fast _exit message to dynarec_log instead
Diffstat (limited to '')
| -rw-r--r-- | src/wrapped/wrappedlibc.c | 2 |
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 |