diff options
Diffstat (limited to 'coreutils/cmp.c')
-rw-r--r-- | coreutils/cmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/cmp.c b/coreutils/cmp.c index c70f882..80fab0b 100644 --- a/coreutils/cmp.c +++ b/coreutils/cmp.c @@ -23,14 +23,14 @@ #include "busybox.h" -static FILE *cmp_xfopen_input(const char * const filename) +static FILE *cmp_xfopen_input(const char *filename) { FILE *fp; fp = fopen_or_warn_stdin(filename); if (fp) return fp; - sleep_and_die(); /* We already output an error message. */ + xfunc_die(); /* We already output an error message. */ } static const char fmt_eof[] = "cmp: EOF on %s\n"; |