emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 5537836: * lib-src/seccomp-filter.c: Print trailing newline.


From: Philipp Stephani
Subject: master 5537836: * lib-src/seccomp-filter.c: Print trailing newline.
Date: Sun, 11 Apr 2021 10:03:17 -0400 (EDT)

branch: master
commit 553783628892a5363aacf58ce238969cb60a1c3a
Author: Philipp Stephani <phst@google.com>
Commit: Philipp Stephani <phst@google.com>

    * 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 eeca75f..77e4413 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];



reply via email to

[Prev in Thread] Current Thread [Next in Thread]