From: Lennart Poettering Date: Tue, 22 May 2018 10:08:30 +0000 (+0200) Subject: coredumpctl: always output proper english sentence X-Git-Tag: v239~226^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=abdf29f50d9b0ee55a24ea02ff827f8d4cdf00bd;p=thirdparty%2Fsystemd.git coredumpctl: always output proper english sentence Let's uppercase the first character, and finish them in a full stop. --- diff --git a/src/coredump/coredumpctl.c b/src/coredump/coredumpctl.c index e255206228a..2933a449db0 100644 --- a/src/coredump/coredumpctl.c +++ b/src/coredump/coredumpctl.c @@ -217,7 +217,7 @@ static int parse_argv(int argc, char *argv[]) { case 'o': if (arg_output) { - log_error("cannot set output more than once"); + log_error("Cannot set output more than once."); return -EINVAL; } @@ -241,7 +241,7 @@ static int parse_argv(int argc, char *argv[]) { case 'F': if (arg_field) { - log_error("cannot use --field/-F more than once"); + log_error("Cannot use --field/-F more than once."); return -EINVAL; } arg_field = optarg;