diff options
Diffstat (limited to 'src/wrapped/wrappedudev1.c')
| -rw-r--r-- | src/wrapped/wrappedudev1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wrapped/wrappedudev1.c b/src/wrapped/wrappedudev1.c index 6c30a14c..a82b61c0 100644 --- a/src/wrapped/wrappedudev1.c +++ b/src/wrapped/wrappedudev1.c @@ -41,7 +41,7 @@ static uintptr_t my_log_fn_fct_##A = 0; static void my_log_fn_##A(void* udev, int p, void *f, int l, void* fn, void* fmt, x64_va_list_t args) \ { \ CONVERT_VALIST(args) \ - RunFunction(my_context, my_log_fn_fct_##A, 7, udev, p, f, l, fn, fmt, VARARGS); \ + RunFunction(my_log_fn_fct_##A, 7, udev, p, f, l, fn, fmt, VARARGS); \ } #else #define GO(A) \ @@ -49,7 +49,7 @@ static uintptr_t my_log_fn_fct_##A = 0; static void my_log_fn_##A(void* udev, int p, void *f, int l, void* fn, void* fmt, x64_va_list_t args) \ { \ CREATE_VALIST_FROM_VALIST(args, thread_get_emu()->scratch); \ - RunFunction(my_context, my_log_fn_fct_##A, 7, udev, p, f, l, fn, fmt, VARARGS); \ + RunFunction(my_log_fn_fct_##A, 7, udev, p, f, l, fn, fmt, VARARGS); \ } #endif SUPER() |