diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-06-28 20:27:08 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-06-28 20:27:08 +0200 |
| commit | c18fbfa1066dd5015ab9f726e6a6c2b0e11f56b9 (patch) | |
| tree | f7ffc4822f15c5ea44c8bc8422390504665b920b /src | |
| parent | cd695f735b70d37498c796160849226d7c379d59 (diff) | |
| download | box64-c18fbfa1066dd5015ab9f726e6a6c2b0e11f56b9.tar.gz box64-c18fbfa1066dd5015ab9f726e6a6c2b0e11f56b9.zip | |
Fixed printf_log for __cx_pure_virtual function
Diffstat (limited to 'src')
| -rwxr-xr-x | 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 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(); } |