diff options
Diffstat (limited to 'coreutils/head.c')
-rw-r--r-- | coreutils/head.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/head.c b/coreutils/head.c index 92b43bae2..f3aef1b9b 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -80,7 +80,7 @@ int head_main(int argc, char **argv) } head(len, fp); if (errno) { - errorMsg("%s: %s\n", argv[optind], strerror(errno)); + error_msg("%s: %s\n", argv[optind], strerror(errno)); status = EXIT_FAILURE; errno = 0; } |