diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/psignal.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/stdio-common/psignal.c b/stdio-common/psignal.c index 3a75224b78..2e6588c692 100644 --- a/stdio-common/psignal.c +++ b/stdio-common/psignal.c @@ -64,12 +64,14 @@ psignal (int sig, const char *s) else (void) fprintf (stderr, "%s%s%s\n", s, colon, _("Unknown signal")); } - - if (_IO_fwide (stderr, 0) > 0) - (void) __fwprintf (stderr, L"%s", buf); else - (void) fputs (buf, stderr); + { + if (_IO_fwide (stderr, 0) > 0) + (void) __fwprintf (stderr, L"%s", buf); + else + (void) fputs (buf, stderr); - free (buf); + free (buf); + } } } |