fputs instead of fprintf

This commit is contained in:
albert
2005-10-30 23:45:47 +00:00
parent 3fca0261e0
commit 29cbc63561
4 changed files with 8 additions and 8 deletions

2
pwdx.c
View File

@@ -22,7 +22,7 @@
static void die(const char *msg) NORETURN;
static void die(const char *msg)
{
fprintf(stderr, msg);
fputs(msg, stderr);
exit(1);
}