diff options
author | Luck, Tony <tony.luck@intel.com> | 2006-03-01 15:01:53 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-01 17:42:00 -0800 |
commit | 2b74cffa9179eed274be2a38c59b7e323c813737 (patch) | |
tree | 176610d1f014d697cff25092b10e88e18ea2302a /pack-objects.c | |
parent | 2495ca044795f0c5f459789eb29b66f5970096e1 (diff) | |
download | git-2b74cffa9179eed274be2a38c59b7e323c813737.tar.gz |
Re-fix compilation warnings.
Commit 8fcf1ad9c68e15d881194c8544e7c11d33529c2b has a
combination of double cast and Andreas' switch to using
unsigned long ... just the latter is sufficient (and a lot less
ugly than using the double cast).
Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'pack-objects.c')
-rw-r--r-- | pack-objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-objects.c b/pack-objects.c index 21ee572f48..136a7f5aad 100644 --- a/pack-objects.c +++ b/pack-objects.c @@ -99,7 +99,7 @@ static int reused_delta = 0; static int pack_revindex_ix(struct packed_git *p) { - unsigned long ui = (unsigned long)(long)p; + unsigned long ui = (unsigned long)p; int i; ui = ui ^ (ui >> 16); /* defeat structure alignment */ |