commit | f630cfda8800aee03c7eb2fcd0f840730fbe43b9 | [log] [tgz] |
---|---|---|
author | Pierre Habouzit <madcoder@debian.org> | Wed Jul 22 23:34:34 2009 +0200 |
committer | Junio C Hamano <gitster@pobox.com> | Wed Jul 22 21:57:41 2009 -0700 |
tree | f780eac20525e629c704a31a8d6e629cae6ea011 | |
parent | 67da52bedc5750c10a732b9da7d64d5ef73f3b8a [diff] [blame] |
refactor: use bitsizeof() instead of 8 * sizeof() Signed-off-by: Pierre Habouzit <madcoder@debian.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/sha1_file.c b/sha1_file.c index 4576ff7..1d996a1 100644 --- a/sha1_file.c +++ b/sha1_file.c
@@ -1170,7 +1170,7 @@ size = c & 15; shift = 4; while (c & 0x80) { - if (len <= used || sizeof(long) * 8 <= shift) { + if (len <= used || bitsizeof(long) <= shift) { error("bad object header"); return 0; }