foo*sum: Correct syntax error

coreutils/md5_sha1_sum.c:156:3: error: expected '}' before 'else'

Signed-off-by: Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
This commit is contained in:
Cristian Ionescu-Idbohrn 2013-07-03 19:03:37 +02:00 committed by Bernhard Reutner-Fischer
parent 6651e42609
commit 4f9fc1e5f5

View File

@ -151,7 +151,7 @@ static uint8_t *hash_file(const char *filename)
update(&context, in_buf, count); update(&context, in_buf, count);
} }
hash_value = NULL; hash_value = NULL;
if (count < 0) { if (count < 0)
bb_perror_msg("can't read '%s'", filename); bb_perror_msg("can't read '%s'", filename);
else /* count == 0 */ { else /* count == 0 */ {
final(&context, in_buf); final(&context, in_buf);