summaryrefslogtreecommitdiff
path: root/src/cgls
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:19:16 +0100
committerMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:29:21 +0100
commitda927ba997d68401563b927f92e6e40e021a8e5c (patch)
tree71764cd998aef07b8943c5206c9307a93ba9c528 /src/cgls
parent0a1beeb64207eaa88ab9236787b1cbc2f704ae14 (diff)
treewide: no need to negate errno for log_*_errno()
It corrrectly handles both positive and negative errno values.
Diffstat (limited to 'src/cgls')
-rw-r--r--src/cgls/cgls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cgls/cgls.c b/src/cgls/cgls.c
index 7fc346d6f5..71921c4a80 100644
--- a/src/cgls/cgls.c
+++ b/src/cgls/cgls.c
@@ -155,7 +155,7 @@ int main(int argc, char *argv[]) {
r = bus_open_transport(BUS_TRANSPORT_LOCAL, NULL, false, &bus);
if (r < 0) {
- log_error_errno(-r, "Failed to create bus connection: %m");
+ log_error_errno(r, "Failed to create bus connection: %m");
goto finish;
}
@@ -206,7 +206,7 @@ int main(int argc, char *argv[]) {
m = strappenda("/run/systemd/machines/", arg_machine);
r = parse_env_file(m, NEWLINE, "SCOPE", &scope, NULL);
if (r < 0) {
- log_error_errno(-r, "Failed to get machine path: %m");
+ log_error_errno(r, "Failed to get machine path: %m");
goto finish;
}
@@ -257,7 +257,7 @@ int main(int argc, char *argv[]) {
}
if (r < 0) {
- log_error_errno(-r, "Failed to list cgroup tree %s: %m", root);
+ log_error_errno(r, "Failed to list cgroup tree %s: %m", root);
retval = EXIT_FAILURE;
} else
retval = EXIT_SUCCESS;