diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-11-06 16:01:19 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-11-06 16:01:19 +0000 |
commit | 4b7ccad6829d11c07f1ceac3b3d12f8aec9e640b (patch) | |
tree | 4780ddc5695d7a8d1650c770a3c111b5bc9d8684 /src/mesa/swrast/s_lines.c | |
parent | 87c964d3885d84959f86d5d7d9c4358240b6da3c (diff) |
casts to silence warnings from gcc 2.96
Diffstat (limited to 'src/mesa/swrast/s_lines.c')
-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 080d45cc80..ecdd748c13 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.22 2001/11/06 16:01:19 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 |