]> git.proxmox.com Git - mirror_lxcfs.git/blobdiff - src/bindings.c
Fix build on ia64
[mirror_lxcfs.git] / src / bindings.c
index fee7ede0dab672cf2a844fe3f0ccf3974f2f4b26..fe106a65c34ceb28e8a077525a661d0ffc6b1e3b 100644 (file)
@@ -424,7 +424,7 @@ __returns_twice pid_t lxcfs_raw_clone(unsigned long flags, int *pidfd)
        }
 #elif defined(__ia64__)
        /* On ia64 the stack and stack size are passed as separate arguments. */
-       return syscall(__NR_clone, flags | SIGCHLD, NULL, prctl_arg(0), pidfd);
+       return syscall(__NR_clone, flags | SIGCHLD, NULL, 0, pidfd);
 #else
        return syscall(__NR_clone, flags | SIGCHLD, NULL, pidfd);
 #endif