Cast pointers to `void *' when used in a format.
authorFlorian Forster <octo@verplant.org>
Sun, 18 Jun 2006 14:54:57 +0000 (16:54 +0200)
committerFlorian Forster <octo@verplant.org>
Sun, 18 Jun 2006 14:54:57 +0000 (16:54 +0200)
ANSI C99 requires void-pointers when using the `%p' format. This patch adds the
neccessary cast in `blame.c'.

blame.c

diff --git a/blame.c b/blame.c
index 25d3bcf..51eab2e 100644 (file)
--- 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]])