]> git.proxmox.com Git - mirror_lxc.git/blobdiff - src/lxc/namespace.c
Merge pull request #2719 from ssup2/master
[mirror_lxc.git] / src / lxc / namespace.c
index d6b4c2a76fb41cf00920ff092ebe6047450029dd..b6eab04e677bfa677c83cc66cae7ff96acbd5c4b 100644 (file)
@@ -67,7 +67,7 @@ pid_t lxc_clone(int (*fn)(void *), void *arg, int flags)
 #ifdef __ia64__
        ret = __clone2(do_clone, stack, stack_size, flags | SIGCHLD, &clone_arg);
 #else
-       ret = clone(do_clone, stack  + stack_size, flags | SIGCHLD, &clone_arg);
+       ret = clone(do_clone, stack + stack_size, flags | SIGCHLD, &clone_arg);
 #endif
        if (ret < 0)
                SYSERROR("Failed to clone (%#x)", flags);