summaryrefslogtreecommitdiff
path: root/src/ipc/shmctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc/shmctl.c')
-rw-r--r--src/ipc/shmctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipc/shmctl.c b/src/ipc/shmctl.c
index 3645fe2d..b2bdfa18 100644
--- a/src/ipc/shmctl.c
+++ b/src/ipc/shmctl.c
@@ -4,7 +4,7 @@
int shmctl(int id, int cmd, struct shmid_ds *buf)
{
-#ifdef __NR_shmctl
+#ifdef SYS_shmctl
return syscall(SYS_shmctl, id, cmd, buf);
#else
return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, buf);