diff options
Diffstat (limited to 'src/dbus1-generator/dbus1-generator.c')
-rw-r--r-- | src/dbus1-generator/dbus1-generator.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dbus1-generator/dbus1-generator.c b/src/dbus1-generator/dbus1-generator.c index 4ba1ad131d..a459c8450f 100644 --- a/src/dbus1-generator/dbus1-generator.c +++ b/src/dbus1-generator/dbus1-generator.c @@ -103,7 +103,7 @@ static int create_dbus_files( r = fflush_and_check(f); if (r < 0) { - log_error_errno(-r, "Failed to write %s: %m", a); + log_error_errno(r, "Failed to write %s: %m", a); return r; } @@ -140,7 +140,7 @@ static int create_dbus_files( r = fflush_and_check(f); if (r < 0) { - log_error_errno(-r, "Failed to write %s: %m", b); + log_error_errno(r, "Failed to write %s: %m", b); return r; } @@ -332,7 +332,7 @@ int main(int argc, char *argv[]) { type = "system"; units = SYSTEM_DATA_UNIT_PATH; } else { - log_error_errno(-r, "Failed to determine whether we are running as user or system instance: %m"); + log_error_errno(r, "Failed to determine whether we are running as user or system instance: %m"); return r; } |