summaryrefslogtreecommitdiff
path: root/src/ac-power
diff options
context:
space:
mode:
Diffstat (limited to 'src/ac-power')
-rw-r--r--src/ac-power/ac-power.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ac-power/ac-power.c b/src/ac-power/ac-power.c
index 090b6b1783..90ba5d2b68 100644
--- a/src/ac-power/ac-power.c
+++ b/src/ac-power/ac-power.c
@@ -56,10 +56,10 @@ static int parse_argv(int argc, char *argv[]) {
assert_not_reached("Unhandled option");
}
- if (optind < argc) {
- log_error("%s takes no arguments.", program_invocation_short_name);
- return -EINVAL;
- }
+ if (optind < argc)
+ return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
+ "%s takes no arguments.",
+ program_invocation_short_name);
return 1;
}