diff options
author | Jim Meyering <jim@meyering.net> | 1996-07-04 22:51:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-07-04 22:51:52 +0000 |
commit | f8514af7a6e3febca7f939a9f7690cfecec95f7a (patch) | |
tree | 41bb9a6f2b9312d455aafc6dd7fdb3872c11b5a5 /src | |
parent | 6b4aadc588a55c0944cb6e3738437fb722824e67 (diff) | |
download | coreutils-f8514af7a6e3febca7f939a9f7690cfecec95f7a.tar.xz |
(split_3): Add missing semicolon. From Jim Blandy.
Diffstat (limited to 'src')
-rw-r--r-- | src/md5sum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/md5sum.c b/src/md5sum.c index 7cabcd3bd..daae484c7 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] == '\\') { |