From: Antonio Terceiro Date: Sun, 21 Mar 2021 14:37:51 +0000 (-0300) Subject: logs-show: add missing newline in warning message X-Git-Tag: v248-2~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17e90001643d07a7353ba88417e12be2ff0fa042;p=thirdparty%2Fsystemd.git logs-show: add missing newline in warning message --- diff --git a/src/shared/logs-show.c b/src/shared/logs-show.c index 7c61c334e90..706a00c7f06 100644 --- a/src/shared/logs-show.c +++ b/src/shared/logs-show.c @@ -1396,7 +1396,7 @@ int show_journal( bool noaccess = journal_access_blocked(j); if (line == 0 && noaccess) - fprintf(f, "Warning: some journal files were not opened due to insufficient permissions."); + fprintf(f, "Warning: some journal files were not opened due to insufficient permissions.\n"); else if (!noaccess) fprintf(f, "Notice: journal has been rotated since unit was started, output may be incomplete.\n"); else