diff options
Diffstat (limited to 'src/path')
-rw-r--r-- | src/path/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/path/path.c b/src/path/path.c index 37f2571fab..e4d8d1d53c 100644 --- a/src/path/path.c +++ b/src/path/path.c @@ -88,7 +88,7 @@ static int list_homes(void) { if (q == -ENXIO) continue; if (q < 0) { - log_error("Failed to query %s: %s", path_table[i], strerror(-r)); + log_error_errno(-r, "Failed to query %s: %m", path_table[i]); r = q; continue; } @@ -109,7 +109,7 @@ static int print_home(const char *n) { r = sd_path_home(i, arg_suffix, &p); if (r < 0) { - log_error("Failed to query %s: %s", n, strerror(-r)); + log_error_errno(-r, "Failed to query %s: %m", n); return r; } |