Skip to content

Commit

Permalink
Fix spacing error in namespace.c
Browse files Browse the repository at this point in the history
Signed-off-by: Jungsub Shin supsup5642@tmax.co.kr
  • Loading branch information
ssup2 authored and Christian Brauner committed Nov 22, 2018
1 parent f44505e commit 1b02aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxc/namespace.c
Expand Up @@ -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);
Expand Down

0 comments on commit 1b02aa5

Please sign in to comment.