Unverified Commit d2b2f629 by Christian Brauner Committed by GitHub

Merge pull request #2719 from ssup2/master

Fix spacing error in namespace.c
parents acf50cfe 6e055cce
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment