X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fperror.c;h=fdcb4d71c8855201c8a67858e8fa607fff038744;hb=5afc74fbaa2371f30df0dc9fb7bc3afe6bd96137;hp=e4637c8aa949b1bd21117dfa2f5d7513c2d663fc;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stdio/perror.c b/src/stdio/perror.c index e4637c8a..fdcb4d71 100644 --- a/src/stdio/perror.c +++ b/src/stdio/perror.c @@ -5,23 +5,18 @@ void perror(const char *msg) { -#if 1 - if (msg) fprintf(stderr, "%s: %m\n", msg, strerror(errno)); - else fprintf(stderr, "%m\n"); -#else FILE *f = stderr; char *errstr = strerror(errno); FLOCK(f); - if (msg) { - __fwritex(msg, strlen(msg), f); - __putc_unlocked(':', f); - __putc_unlocked(' ', f); + if (msg && *msg) { + fwrite(msg, strlen(msg), 1, f); + fputc(':', f); + fputc(' ', f); } - __fwritex(errstr, strlen(errstr), f); - __putc_unlocked('\n', f); + fwrite(errstr, strlen(errstr), 1, f); + fputc('\n', f); FUNLOCK(f); -#endif }