diff options
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 |