diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-15 12:52:00 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-15 13:01:37 -0700 |
commit | 1b9bc5a7b7434d771726011613a00cb202bd9f44 (patch) | |
tree | 52b810b4963ce4c079df9c70dafd9523276f7618 /pack-objects.c | |
parent | f3dd5eae58cf3d0d944604af4c71a7043d5368fd (diff) | |
download | git-1b9bc5a7b7434d771726011613a00cb202bd9f44.tar.gz git-1b9bc5a7b7434d771726011613a00cb202bd9f44.tar.xz |
Fix pack-index issue on 64-bit platforms a bit more portably.v1.3.3
Apparently <stdint.h> is not enough for uint32_t on OpenBSD; use
"unsigned int" -- hopefully that would stay 32-bit on every
platform we care about, at least until we update the pack-index
file format.
Our sha1 routines optimized for architectures use uint32_t and
expects '#include <stdint.h>' to be enough, so OpenBSD on arm or
ppc might have similar issues down the road, I dunno.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'pack-objects.c')
-rw-r--r-- | pack-objects.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pack-objects.c b/pack-objects.c index aa2c09861..614e87bc8 100644 --- a/pack-objects.c +++ b/pack-objects.c @@ -10,7 +10,6 @@ #include "tree-walk.h" #include <sys/time.h> #include <signal.h> -#include <stdint.h> static const char pack_usage[] = "git-pack-objects [-q] [--no-reuse-delta] [--non-empty] [--local] [--incremental] [--window=N] [--depth=N] {--stdout | base-name} < object-list"; @@ -157,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++) { - uint32_t hl = *((uint32_t *)(index + 24 * i)); + unsigned int hl = *((unsigned int *)(index + 24 * i)); rix->revindex[i] = ntohl(hl); } /* This knows the pack format -- the 20-byte trailer |