about summary refs log tree commit diff stats
path: root/src/libtools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-12-31 22:34:08 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-12-31 22:34:08 +0100
commit80a4b61e5cc697b4775b7c94a50c5eda06efff08 (patch)
treec4472dd6c769132192b7753ffb7363ef13f50991 /src/libtools
parent1d20968f822018ccbe1afd7c4d35c4f7b4774341 (diff)
downloadbox64-80a4b61e5cc697b4775b7c94a50c5eda06efff08.tar.gz
box64-80a4b61e5cc697b4775b7c94a50c5eda06efff08.zip
[BOX32] Fixed build
Diffstat (limited to 'src/libtools')
-rw-r--r--src/libtools/signal32.c2
-rw-r--r--src/libtools/signals.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libtools/signal32.c b/src/libtools/signal32.c
index 2f4a0a16..fc07d8aa 100644
--- a/src/libtools/signal32.c
+++ b/src/libtools/signal32.c
@@ -861,7 +861,7 @@ void my32_sigactionhandler(int32_t sig, siginfo_t* info, void * ucntx)
     void* db = NULL;
     #endif
 
-    my_sigactionhandler_oldcode_32(sig, 0, info, ucntx, NULL, db);
+    my_sigactionhandler_oldcode_32(NULL, sig, 0, info, ucntx, NULL, db);
 }
 
 
diff --git a/src/libtools/signals.c b/src/libtools/signals.c
index 7b1bbf30..c1ff9f9a 100644
--- a/src/libtools/signals.c
+++ b/src/libtools/signals.c
@@ -953,7 +953,7 @@ int sigbus_specialcases(siginfo_t* info, void * ucntx, void* pc, void* _fpsimd)
 }
 
 #ifdef BOX32
-void my_sigactionhandler_oldcode_32(ix64emu_t* emu, nt32_t sig, int simple, siginfo_t* info, void * ucntx, int* old_code, void* cur_db);
+void my_sigactionhandler_oldcode_32(x64emu_t* emu, int32_t sig, int simple, siginfo_t* info, void * ucntx, int* old_code, void* cur_db);
 #endif
 void my_sigactionhandler_oldcode_64(x64emu_t* emu, int32_t sig, int simple, siginfo_t* info, void * ucntx, int* old_code, void* cur_db)
 {