From 553783628892a5363aacf58ce238969cb60a1c3a Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sun, 11 Apr 2021 16:02:05 +0200 Subject: [PATCH] * lib-src/seccomp-filter.c: Print trailing newline. --- lib-src/seccomp-filter.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib-src/seccomp-filter.c b/lib-src/seccomp-filter.c index eeca75fddfb..77e4413d3d4 100644 --- a/lib-src/seccomp-filter.c +++ b/lib-src/seccomp-filter.c @@ -60,7 +60,10 @@ fail (int error, const char *format, ...) va_list ap; va_start (ap, format); if (error == 0) - vfprintf (stderr, format, ap); + { + vfprintf (stderr, format, ap); + fputc ('\n', stderr); + } else { char buffer[1000]; -- 2.39.5