aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/md5_sha1_sum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c
index b23c6c0ff..1a5342e87 100644
--- a/coreutils/md5_sha1_sum.c
+++ b/coreutils/md5_sha1_sum.c
@@ -151,7 +151,7 @@ static uint8_t *hash_file(const char *filename)
151 update(&context, in_buf, count); 151 update(&context, in_buf, count);
152 } 152 }
153 hash_value = NULL; 153 hash_value = NULL;
154 if (count < 0) { 154 if (count < 0)
155 bb_perror_msg("can't read '%s'", filename); 155 bb_perror_msg("can't read '%s'", filename);
156 else /* count == 0 */ { 156 else /* count == 0 */ {
157 final(&context, in_buf); 157 final(&context, in_buf);