From f8514af7a6e3febca7f939a9f7690cfecec95f7a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 4 Jul 1996 22:51:52 +0000 Subject: [PATCH] (split_3): Add missing semicolon. From Jim Blandy. --- src/md5sum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/md5sum.c b/src/md5sum.c index 7cabcd3..daae484 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -145,7 +145,7 @@ split_3 (char *s, size_t s_len, char **u, int *binary, char **w) Ignore this line if it is too short. */ if (!(s_len - i >= MIN_DIGEST_LINE_LENGTH || (s[i] == '\\' && s_len - i >= 1 + MIN_DIGEST_LINE_LENGTH))) - return 1 + return 1; if (s[i] == '\\') { -- 2.7.4