]> git.proxmox.com Git - mirror_lxc.git/commitdiff
Fix spacing error in namespace.c
authorJungsub <supsup5642@gmail.com>
Tue, 6 Nov 2018 14:25:11 +0000 (14:25 +0000)
committerJungsub <supsup5642@gmail.com>
Tue, 6 Nov 2018 14:25:11 +0000 (14:25 +0000)
Signed-off-by: Jungsub Shin supsup5642@tmax.co.kr
src/lxc/namespace.c

index 5b26d64ba29a13f3d5bd5ffbca5267364f20f24a..ef030acf093c42d07b00c7fd4138e769459359e3 100644 (file)
@@ -64,7 +64,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);