chiark / gitweb /
treewide: no need to negate errno for log_*_errno()
[elogind.git] / src / login / logind-seat.c
index 04909a991a5f1a0de020b09e863ffdc065582ec3..8eb5e3ee0a58d72d4f261fb3798a424c8144621c 100644 (file)
@@ -154,7 +154,7 @@ int seat_save(Seat *s) {
 
 finish:
         if (r < 0)
 
 finish:
         if (r < 0)
-                log_error_errno(-r, "Failed to save seat data %s: %m", s->state_file);
+                log_error_errno(r, "Failed to save seat data %s: %m", s->state_file);
 
         return r;
 }
 
         return r;
 }
@@ -201,7 +201,7 @@ int seat_preallocate_vts(Seat *s) {
 
                 q = vt_allocate(i);
                 if (q < 0) {
 
                 q = vt_allocate(i);
                 if (q < 0) {
-                        log_error_errno(-q, "Failed to preallocate VT %i: %m", i);
+                        log_error_errno(q, "Failed to preallocate VT %i: %m", i);
                         r = q;
                 }
         }
                         r = q;
                 }
         }
@@ -221,7 +221,7 @@ int seat_apply_acls(Seat *s, Session *old_active) {
                             !!s->active, s->active ? s->active->user->uid : 0);
 
         if (r < 0)
                             !!s->active, s->active ? s->active->user->uid : 0);
 
         if (r < 0)
-                log_error_errno(-r, "Failed to apply ACLs: %m");
+                log_error_errno(r, "Failed to apply ACLs: %m");
 
         return r;
 }
 
         return r;
 }