diff options
author | Philipp Stephani <phst@google.com> | 2021-04-11 16:02:05 +0200 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2021-04-11 16:03:08 +0200 |
commit | 553783628892a5363aacf58ce238969cb60a1c3a (patch) | |
tree | f7f1b4cad698dd7b8d92a50031f2169e3f93b09e /lib-src/seccomp-filter.c | |
parent | dac5af2ba15ee8006ba0c223b11e1dfb237e2255 (diff) | |
download | emacs-553783628892a5363aacf58ce238969cb60a1c3a.tar.gz emacs-553783628892a5363aacf58ce238969cb60a1c3a.tar.bz2 emacs-553783628892a5363aacf58ce238969cb60a1c3a.zip |
* lib-src/seccomp-filter.c: Print trailing newline.
Diffstat (limited to 'lib-src/seccomp-filter.c')
-rw-r--r-- | lib-src/seccomp-filter.c | 5 |
1 files changed, 4 insertions, 1 deletions
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]; |