mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
* lib-src/seccomp-filter.c: Print trailing newline.
This commit is contained in:
parent
dac5af2ba1
commit
5537836288
1 changed files with 4 additions and 1 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Reference in a new issue