From 9e6d4c613d14ee98ff1d7c88b2084697a40815fc Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Wed, 17 Apr 2013 09:49:03 -0700 Subject: [PATCH] bootchart: Fix errno usage. --- src/bootchart/bootchart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 3350ea1d8..2226ebad6 100644 --- a/src/bootchart/bootchart.c +++ b/src/bootchart/bootchart.c @@ -268,7 +268,7 @@ static void do_journal_append(char *file) f = open(file, O_RDONLY); if (f < 0) { - log_error("Failed to read bootchart data: %s\n", strerror(-errno)); + log_error("Failed to read bootchart data: %m\n"); return; } n = loop_read(f, p + 10, BOOTCHART_MAX, false); -- 2.30.2