From 6465fefe3bbbb6444e1515403e4922546f3e4861 Mon Sep 17 00:00:00 2001 From: Jonathan Boulle Date: Wed, 27 May 2015 12:02:24 -0700 Subject: [PATCH] fix extraneous space in equality check --- src/core/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/main.c b/src/core/main.c index c39815b106..212ab901b1 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1496,7 +1496,7 @@ int main(int argc, char *argv[]) { setsid(); /* Move out of the way, so that we won't block unmounts */ - assert_se(chdir("/") == 0); + assert_se(chdir("/") == 0); /* Reset the console, but only if this is really init and we * are freshly booted */