summaryrefslogtreecommitdiff
path: root/builtin-diff.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2007-02-23 04:20:32 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-02-23 05:24:34 (GMT)
commit75b62b489af7b62a5518c3f199d2a2776205e088 (patch)
treefb7ee6d079c4b286102175d6cdec938159614bed /builtin-diff.c
parent755b99d81539461645088085ea033a3b36152da5 (diff)
downloadgit-75b62b489af7b62a5518c3f199d2a2776205e088.zip
git-75b62b489af7b62a5518c3f199d2a2776205e088.tar.gz
git-75b62b489af7b62a5518c3f199d2a2776205e088.tar.bz2
git-diff: fix combined diff
The code forgets that typecast binds tighter than addition, in other words: (cast *)array + i === ((cast *)array) + i Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-diff.c')
-rw-r--r--builtin-diff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin-diff.c b/builtin-diff.c
index a659020..c387ebb 100644
--- a/builtin-diff.c
+++ b/builtin-diff.c
@@ -192,7 +192,8 @@ static int builtin_diff_combined(struct rev_info *revs,
parent = xmalloc(ents * sizeof(*parent));
/* Again, the revs are all reverse */
for (i = 0; i < ents; i++)
- hashcpy((unsigned char*)parent + i, ent[ents - 1 - i].item->sha1);
+ hashcpy((unsigned char *)(parent + i),
+ ent[ents - 1 - i].item->sha1);
diff_tree_combined(parent[0], parent + 1, ents - 1,
revs->dense_combined_merges, revs);
return 0;