From c18fbfa1066dd5015ab9f726e6a6c2b0e11f56b9 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 28 Jun 2022 20:27:08 +0200 Subject: Fixed printf_log for __cx_pure_virtual function --- src/wrapped/wrappedlibc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index 8ca9bcf3..9723b939 100755 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -2725,7 +2725,7 @@ EXPORT int my_clone(x64emu_t* emu, void* fn, void* stack, int flags, void* args, EXPORT void my___cxa_pure_virtual(x64emu_t* emu) { - fprintf(LOG_NONE, "Pure virtual function called\n"); + printf_log(LOG_NONE, "Pure virtual function called\n"); emu->quit = 1; abort(); } -- cgit 1.4.1