test: eprintf in usage

This commit is contained in:
Connor Lane Smith 2012-05-15 13:34:32 +01:00
parent fcb8821246
commit 7c121e189e
1 changed files with 2 additions and 3 deletions

5
test.c
View File

@ -114,7 +114,6 @@ usage(void)
{
const char *ket = (*argv0 == '[') ? " ]" : "";
fprintf(stderr, "usage: %s string%s\n"
" %s [!] [-bcdefghLnprSstuwxz] string%s\n", argv0, ket, argv0, ket);
exit(EXIT_FAILURE);
eprintf("usage: %s string%s\n"
" %s [!] [-bcdefghLnprSstuwxz] string%s\n", argv0, ket, argv0, ket);
}