From 5d236c1f420b7a717b8f40415c0e0ae7d52f3aba Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Fri, 24 Apr 2015 21:51:43 +0200 Subject: bootchart: kill newline characters from log_error_errno() calls --- src/bootchart/svg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bootchart/svg.c') diff --git a/src/bootchart/svg.c b/src/bootchart/svg.c index c63fd0406e..0132475e10 100644 --- a/src/bootchart/svg.c +++ b/src/bootchart/svg.c @@ -157,7 +157,7 @@ static int svg_title(FILE *of, const char *build, int pscount, double log_start, r = read_one_line_file("/proc/cmdline", &cmdline); if (r < 0) { - log_error_errno(r, "Unable to read cmdline: %m\n"); + log_error_errno(r, "Unable to read cmdline: %m"); return r; } @@ -192,7 +192,7 @@ static int svg_title(FILE *of, const char *build, int pscount, double log_start, /* CPU type */ r = read_full_file("/proc/cpuinfo", &buf, NULL); if (r < 0) - return log_error_errno(r, "Unable to read cpuinfo: %m\n"); + return log_error_errno(r, "Unable to read cpuinfo: %m"); cpu = strstr(buf, "model name"); if (!cpu) { -- cgit v1.2.3-54-g00ecf