chiark / gitweb /
treewide: auto-convert the simple cases to log_*_errno()
[elogind.git] / src / bootchart / bootchart.c
index 813e38deeb0afc34f1827aa8a2092692bf8c34b0..e0a5542fa9c1ed4ea4c35c71a714a127b908ceb4 100644 (file)
@@ -290,7 +290,7 @@ static void do_journal_append(char *file) {
         }
         n = loop_read(f, p + 10, BOOTCHART_MAX, false);
         if (n < 0) {
-                log_error("Failed to read bootchart data: %s", strerror(-n));
+                log_error_errno(-n, "Failed to read bootchart data: %m");
                 close(f);
                 return;
         }
@@ -302,7 +302,7 @@ static void do_journal_append(char *file) {
 
         r = sd_journal_sendv(iovec, j);
         if (r < 0)
-                log_error("Failed to send bootchart: %s", strerror(-r));
+                log_error_errno(-r, "Failed to send bootchart: %m");
 }
 
 int main(int argc, char *argv[]) {