chiark / gitweb /
treewide: no need to negate errno for log_*_errno()
[elogind.git] / src / fstab-generator / fstab-generator.c
index 1863ab8e8933e48f554abfac410c0736758dc7ae..177ecfa3dc68d8342667cab4867186b5d2d952d5 100644 (file)
@@ -134,7 +134,7 @@ static int add_swap(
 
         r = fflush_and_check(f);
         if (r < 0) {
-                log_error_errno(-r, "Failed to write unit file %s: %m", unit);
+                log_error_errno(r, "Failed to write unit file %s: %m", unit);
                 return r;
         }
 
@@ -600,7 +600,7 @@ int main(int argc, char *argv[]) {
 
         r = parse_proc_cmdline(parse_proc_cmdline_item);
         if (r < 0)
-                log_warning_errno(-r, "Failed to parse kernel command line, ignoring: %m");
+                log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
 
         /* Always honour root= and usr= in the kernel command line if we are in an initrd */
         if (in_initrd()) {