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 /src/bootchart/bootchart.c | |
parent | d3a2a05329676098faa07529f369a19ed8710723 (diff) |
bootchart: kill newline characters from log_error_errno() calls
Diffstat (limited to 'src/bootchart/bootchart.c')
-rw-r--r-- | src/bootchart/bootchart.c | 2 |
1 files changed, 1 insertions, 1 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; } |