From: Jonathan Boulle Date: Wed, 27 May 2015 19:02:24 +0000 (-0700) Subject: fix extraneous space in equality check X-Git-Tag: v221~272 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d250afe73d855b8a2bb2ee253a1bef6d91d64e74;p=thirdparty%2Fsystemd.git fix extraneous space in equality check --- diff --git a/src/core/main.c b/src/core/main.c index c39815b1067..212ab901b18 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 */