diff options
author | Brian Paul <[email protected]> | 2001-11-06 16:00:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-11-06 16:00:58 +0000 |
commit | 4256cf0175da66d8ed5004d682feaa40934f9f5f (patch) | |
tree | f7828ee18e2c09e375396e05b142e8dd67c2d7f0 /src/mesa/swrast | |
parent | 986749a4eab5c364684fe6ad45914591122ff98e (diff) |
casts to silence warnings from gcc 2.96
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r-- | src/mesa/swrast/s_lines.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_lines.c b/src/mesa/swrast/s_lines.c index 080d45cc804..61c6e919f84 100644 --- a/src/mesa/swrast/s_lines.c +++ b/src/mesa/swrast/s_lines.c @@ -1,4 +1,4 @@ -/* $Id: s_lines.c,v 1.21 2001/08/20 21:45:15 brianp Exp $ */ +/* $Id: s_lines.c,v 1.21.2.1 2001/11/06 16:00:58 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -995,7 +995,7 @@ _mesa_print_line_function(GLcontext *ctx) else if (swrast->Line == flat_multitextured_line) printf("flat_multitextured_line\n"); else - printf("Driver func %p\n", swrast->Line); + printf("Driver func %p\n", (void *) swrast->Line); } #endif |