summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Boulle <jonathan.boulle@coreos.com>2015-05-27 12:02:24 -0700
committerHarald Hoyer <harald@redhat.com>2015-05-27 21:02:56 +0200
commit6465fefe3bbbb6444e1515403e4922546f3e4861 (patch)
treedf5081293644da8e27b3d8d0074e5185852d8344
parent86c3bece38bcf55da6387d20c6f01da9ad0284dc (diff)
fix extraneous space in equality check
-rw-r--r--src/core/main.c2
1 files changed, 1 insertions, 1 deletions
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 */