]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/bootchart/store.c
treewide: use log_*_errno whenever %m is in the format string
[thirdparty/systemd.git] / src / bootchart / store.c
index 9ea1b27de4b1666614170b91d55a8f212bb4ca11..a66387c304bd18cabe749ee7b7d8324a71d90a63 100644 (file)
@@ -146,7 +146,7 @@ void log_sample(int sample, struct list_sample_data **ptr) {
                 /* block stuff */
                 vmstat = openat(procfd, "vmstat", O_RDONLY);
                 if (vmstat == -1) {
-                        log_error("Failed to open /proc/vmstat: %m");
+                        log_error_errno(errno, "Failed to open /proc/vmstat: %m");
                         exit(EXIT_FAILURE);
                 }
         }
@@ -178,7 +178,7 @@ vmstat_next:
                 /* overall CPU utilization */
                 schedstat = openat(procfd, "schedstat", O_RDONLY);
                 if (schedstat == -1) {
-                        log_error("Failed to open /proc/schedstat: %m");
+                        log_error_errno(errno, "Failed to open /proc/schedstat: %m");
                         exit(EXIT_FAILURE);
                 }
         }