chiark / gitweb /
systemctl: fix a leak
[elogind.git] / src / core / transaction.c
index 652ac71094c314fafab595312807b104a8021570..66ee90b7b27b4e99b2a8cc63e504feec92638a2c 100644 (file)
@@ -722,10 +722,8 @@ int transaction_activate(Transaction *tr, Manager *m, JobMode mode, sd_bus_error
 
         /* Tenth step: apply changes */
         r = transaction_apply(tr, m, mode);
-        if (r < 0) {
-                log_warning("Failed to apply transaction: %s", strerror(-r));
-                return r;
-        }
+        if (r < 0)
+                return log_warning_errno(r, "Failed to apply transaction: %m");
 
         assert(hashmap_isempty(tr->jobs));