diff options
author | Jonathan Boulle <jonathan.boulle@coreos.com> | 2015-05-27 12:02:24 -0700 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-05-27 23:36:29 +0200 |
commit | d250afe73d855b8a2bb2ee253a1bef6d91d64e74 (patch) | |
tree | a59f0facced96315f4d5f87f2d509baa41ff87e8 | |
parent | 0e3e60561395a8dd0464f9427d7fc9209bf3b007 (diff) |
fix extraneous space in equality check
-rw-r--r-- | src/core/main.c | 2 |
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 */ |