summaryrefslogtreecommitdiff
path: root/pack-objects.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-05-14 05:24:18 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-14 05:24:18 (GMT)
commit3a3e89b897e122f1f154293e55b1d6c863ffbd2c (patch)
tree08240a87cd86d4f07ecef955257bca1abd8afd91 /pack-objects.c
parent639ca5497279607665847f2e3a11064441a8f2a6 (diff)
parent66561f5a776f2343331fff5b98adff1000622f42 (diff)
downloadgit-3a3e89b897e122f1f154293e55b1d6c863ffbd2c.zip
git-3a3e89b897e122f1f154293e55b1d6c863ffbd2c.tar.gz
git-3a3e89b897e122f1f154293e55b1d6c863ffbd2c.tar.bz2
Merge branch 'fix'
* fix: Fix git-pack-objects for 64-bit platforms
Diffstat (limited to 'pack-objects.c')
-rw-r--r--pack-objects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-objects.c b/pack-objects.c
index 523a1c7..1b9e7a1 100644
--- a/pack-objects.c
+++ b/pack-objects.c
@@ -156,7 +156,7 @@ static void prepare_pack_revindex(struct pack_revindex *rix)
rix->revindex = xmalloc(sizeof(unsigned long) * (num_ent + 1));
for (i = 0; i < num_ent; i++) {
- long hl = *((long *)(index + 24 * i));
+ uint32_t hl = *((uint32_t *)(index + 24 * i));
rix->revindex[i] = ntohl(hl);
}
/* This knows the pack format -- the 20-byte trailer