diff options
author | Daniel Mack <daniel@zonque.org> | 2015-04-24 21:51:43 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-04-24 21:51:43 +0200 |
commit | 5d236c1f420b7a717b8f40415c0e0ae7d52f3aba (patch) | |
tree | cbc4371642981dad177b0b22025331eaa89072c0 | |
parent | d3a2a05329676098faa07529f369a19ed8710723 (diff) |
bootchart: kill newline characters from log_error_errno() calls
-rw-r--r-- | src/bootchart/bootchart.c | 2 | ||||
-rw-r--r-- | src/bootchart/svg.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 65cb3226e5..45fab92598 100644 --- a/src/bootchart/bootchart.c +++ b/src/bootchart/bootchart.c @@ -488,7 +488,7 @@ int main(int argc, char *argv[]) { log_start, interval, overrun); if (r < 0) { - log_error_errno(r, "Error generating svg file: %m\n"); + log_error_errno(r, "Error generating svg file: %m"); return EXIT_FAILURE; } 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) { |