summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorTero Roponen <tero.roponen@gmail.com>2010-08-17 20:46:18 +0300
committerLennart Poettering <lennart@poettering.net>2010-08-17 23:45:57 +0200
commita9c501a5902a64d4ec21cf0e87d16ec8c0c1e169 (patch)
tree28cfaa8165e603589506176b97bd384e1cf95106 /src/main.c
parentd51d2d3db9c201b248ee08ef3317b5fe05ec816b (diff)
main: restore an accidentally removed 'else'
I just noticed this when reading the latest commits.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 2c91fe457..35ee1c73e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -333,7 +333,7 @@ static int parse_proc_cmdline_word(const char *word) {
"systemd.log_color=0|1 Highlight important log messages\n"
"systemd.log_location=0|1 Include code location in log messages\n");
- } if (streq(word, "quiet")) {
+ } else if (streq(word, "quiet")) {
arg_show_status = false;
arg_sysv_console = false;
} else {