X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=blame.c;fp=blame.c;h=51eab2ee31969881240a49db4161038276d39fab;hb=372bb52dd567d39c3e64919e100ae9bd8af603ca;hp=25d3bcf647f44bbaed1c273d5886df6a7cfe6e03;hpb=c163a36f0bd0e07ffb9ee7d4bfb22f1cbb38eef8;p=git.git diff --git a/blame.c b/blame.c index 25d3bcf6..51eab2ee 100644 --- a/blame.c +++ b/blame.c @@ -301,9 +301,9 @@ static void fill_line_map(struct commit *commit, struct commit *other, if (DEBUG) printf("map: i1: %d %d %p i2: %d %d %p\n", i1, map[i1], - i1 != -1 ? blame_lines[map[i1]] : NULL, + (void *) (i1 != -1 ? blame_lines[map[i1]] : NULL), i2, map2[i2], - i2 != -1 ? blame_lines[map2[i2]] : NULL); + (void *) (i2 != -1 ? blame_lines[map2[i2]] : NULL)); if (map2[i2] != -1 && blame_lines[map[i1]] && !blame_lines[map2[i2]])