diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-02-02 18:36:15 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-02-02 20:12:32 +0100 |
commit | ed737400c207b6b909cd6168713e528771693923 (patch) | |
tree | a8104efe7a3bc169c6fbd65df87bbc443c9ce9ea /src/cgls | |
parent | time-util: add overflow checking to monotonic timestamp specifications (diff) | |
download | systemd-ed737400c207b6b909cd6168713e528771693923.tar.xz systemd-ed737400c207b6b909cd6168713e528771693923.zip |
cgls: --machine= expects an argument, indicate that in log messages
We gnerally suffix file settings and cmdline options that expect ags
with "=" to indicate that. Do so here, too.
Diffstat (limited to 'src/cgls')
-rw-r--r-- | src/cgls/cgls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgls/cgls.c b/src/cgls/cgls.c index 82b4d9ccb3..ea79b9185e 100644 --- a/src/cgls/cgls.c +++ b/src/cgls/cgls.c @@ -149,7 +149,7 @@ static int parse_argv(int argc, char *argv[]) { } if (arg_machine && arg_show_unit != SHOW_UNIT_NONE) { - log_error("Cannot combine --unit or --user-unit with --machine."); + log_error("Cannot combine --unit or --user-unit with --machine=."); return -EINVAL; } |