journalctl: add a missing 'break'

There is a 'break' missing in the -q handling
so, for example, 'systemd-journalctl --new-id128 -q'
does nothing.

This patch fixes the problem.
This commit is contained in:
Tero Roponen
2012-03-15 14:12:30 +01:00
committed by Lennart Poettering
parent d3c7d7dd77
commit 490e567dbb
+1
View File
@@ -148,6 +148,7 @@ static int parse_argv(int argc, char *argv[]) {
case 'q':
arg_quiet = true;
break;
case '?':
return -EINVAL;