[lxc-devel] [lxc/master] Fix spacing error in namespace.c

ssup2 on Github lxc-bot at linuxcontainers.org
Tue Nov 6 14:29:42 UTC 2018


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 350 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20181106/ec16a22d/attachment.bin>
-------------- next part --------------
From 6e055cceb212d2a3bab201dbfdd5df7315343c30 Mon Sep 17 00:00:00 2001
From: Jungsub <supsup5642 at gmail.com>
Date: Tue, 6 Nov 2018 14:25:11 +0000
Subject: [PATCH] Fix spacing error in namespace.c

Signed-off-by: Jungsub Shin supsup5642 at tmax.co.kr
---
 src/lxc/namespace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lxc/namespace.c b/src/lxc/namespace.c
index 5b26d64ba..ef030acf0 100644
--- a/src/lxc/namespace.c
+++ b/src/lxc/namespace.c
@@ -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);


More information about the lxc-devel mailing list