diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/sum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sum.c b/coreutils/sum.c index 60f3b3007..35e89a6a3 100644 --- a/coreutils/sum.c +++ b/coreutils/sum.c @@ -41,7 +41,7 @@ static unsigned sum_file(const char *file, unsigned type) if (!bytes_read && !r) /* no error */ break; - bb_perror_msg(file); + bb_simple_perror_msg(file); return 0; } |