summaryrefslogtreecommitdiff
path: root/pack-objects.c
diff options
context:
space:
mode:
authorLuck, Tony <tony.luck@intel.com>2006-03-01 23:01:53 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-03-02 01:42:00 (GMT)
commit2b74cffa9179eed274be2a38c59b7e323c813737 (patch)
tree176610d1f014d697cff25092b10e88e18ea2302a /pack-objects.c
parent2495ca044795f0c5f459789eb29b66f5970096e1 (diff)
downloadgit-2b74cffa9179eed274be2a38c59b7e323c813737.zip
git-2b74cffa9179eed274be2a38c59b7e323c813737.tar.gz
git-2b74cffa9179eed274be2a38c59b7e323c813737.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-objects.c b/pack-objects.c
index 21ee572..136a7f5 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 */