summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorPierre Habouzit <madcoder@debian.org>2009-07-22 21:34:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-07-23 04:57:41 (GMT)
commitf630cfda8800aee03c7eb2fcd0f840730fbe43b9 (patch)
treef780eac20525e629c704a31a8d6e629cae6ea011 /sha1_file.c
parent67da52bedc5750c10a732b9da7d64d5ef73f3b8a (diff)
downloadgit-f630cfda8800aee03c7eb2fcd0f840730fbe43b9.zip
git-f630cfda8800aee03c7eb2fcd0f840730fbe43b9.tar.gz
git-f630cfda8800aee03c7eb2fcd0f840730fbe43b9.tar.bz2
refactor: use bitsizeof() instead of 8 * sizeof()
Signed-off-by: Pierre Habouzit <madcoder@debian.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c2
1 files changed, 1 insertions, 1 deletions
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 @@ unsigned long unpack_object_header_buffer(const unsigned char *buf,
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;
}