From 4a7e5f4f2043e28bcd28ce076543359b2eb8be0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Fri, 15 Aug 2014 21:32:34 -0400 Subject: [PATCH] Fix typo in the previous commit... MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/lxc/start.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lxc/start.c b/src/lxc/start.c index 584049e87..f282b93cf 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -549,9 +549,9 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf) #endif if (pid < 0) { if (flags & CLONE_NEWUSER) - ERRROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno)); + ERROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno)); else - ERRROR("failed to clone (%#x): %s", flags, strerror(errno)); + ERROR("failed to clone (%#x): %s", flags, strerror(errno)); return -1; } if (wait(&status) < 0) {