diff options
author | Keith Whitwell <[email protected]> | 2003-12-09 14:18:41 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2003-12-09 14:18:41 +0000 |
commit | a70fa7129cf8549f8c01b01d5e317a5a07485706 (patch) | |
tree | 4bd3eb38f6f93aa5a392deb321cd79b4d23119e2 /src/mesa/drivers/dri/r200/r200_vtxfmt.c | |
parent | 8a340279f4366e097adce479241a2ede8e977128 (diff) |
clean up some compiler warnings
Diffstat (limited to 'src/mesa/drivers/dri/r200/r200_vtxfmt.c')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_vtxfmt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_vtxfmt.c b/src/mesa/drivers/dri/r200/r200_vtxfmt.c index 2e742d4d04f..188bed28765 100644 --- a/src/mesa/drivers/dri/r200/r200_vtxfmt.c +++ b/src/mesa/drivers/dri/r200/r200_vtxfmt.c @@ -562,7 +562,8 @@ static void wrap_buffer( void ) for (i = 0 ; i < nrverts; i++) { if (R200_DEBUG & DEBUG_VERTS) { int j; - fprintf(stderr, "re-emit vertex %d to %p\n", i, rmesa->vb.dmaptr); + fprintf(stderr, "re-emit vertex %d to %p\n", i, + (void *)rmesa->vb.dmaptr); if (R200_DEBUG & DEBUG_VERBOSE) for (j = 0 ; j < rmesa->vb.vertex_size; j++) fprintf(stderr, "\t%08x/%f\n", *(int*)&tmp[i][j], tmp[i][j]); |