diff --git a/src/stdio/perror.c b/src/stdio/perror.c index 9f1dbe6..eda89fb 100644 --- a/src/stdio/perror.c +++ b/src/stdio/perror.c @@ -6,7 +6,7 @@ void perror(const char *text) { int e = errno; if (text && *text) { fputs(text, stderr); - fputc(' ', stderr); + fputs(": ", stderr); } fputs(strerror(e), stderr); fputc('\n', stderr);