about summary refs log tree commit diff stats
path: root/src/wrapped32/wrappedlibc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrapped32/wrappedlibc.c')
-rwxr-xr-xsrc/wrapped32/wrappedlibc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped32/wrappedlibc.c b/src/wrapped32/wrappedlibc.c
index 004a99ca..618c8a3f 100755
--- a/src/wrapped32/wrappedlibc.c
+++ b/src/wrapped32/wrappedlibc.c
@@ -3370,7 +3370,7 @@ EXPORT int my32_waitid(x64emu_t* emu, uint32_t idtype, uint32_t id, void* siginf
 {
     siginfo_t siginfo_l;
     int ret = waitid(idtype, id, siginfo?(&siginfo_l):NULL, options);
-    convert_siginfo_to_32(siginfo, &siginfo_l, SIGCHLD);
+    convert_siginfo_to_32(siginfo, &siginfo_l, X64_SIGCHLD);
     return ret;
 }