Mesa (master): galahad: silence warnings

Brian Paul brianp at kemper.freedesktop.org
Fri Oct 22 14:59:16 UTC 2010


Module: Mesa
Branch: master
Commit: 67f6a4a8c46fa7cf0b337f3e937b4048a9fceb97
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=67f6a4a8c46fa7cf0b337f3e937b4048a9fceb97

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Oct 22 08:58:35 2010 -0600

galahad: silence warnings

---

 src/gallium/drivers/galahad/glhd_context.c |    4 ++--
 src/gallium/drivers/galahad/glhd_screen.c  |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gallium/drivers/galahad/glhd_context.c b/src/gallium/drivers/galahad/glhd_context.c
index ff6d2aa..50f6607 100644
--- a/src/gallium/drivers/galahad/glhd_context.c
+++ b/src/gallium/drivers/galahad/glhd_context.c
@@ -641,7 +641,7 @@ galahad_set_index_buffer(struct pipe_context *_pipe,
          break;
       default:
          glhd_warn("index buffer %p has unrecognized index size %d",
-               _ib->buffer, _ib->index_size);
+                   (void *) _ib->buffer, _ib->index_size);
          break;
       }
    }
@@ -1013,7 +1013,7 @@ galahad_context_create(struct pipe_screen *_screen, struct pipe_context *pipe)
 
    glhd_pipe->pipe = pipe;
 
-   glhd_warn("Created context %p", glhd_pipe);
+   glhd_warn("Created context %p", (void *) glhd_pipe);
 
    return &glhd_pipe->base;
 }
diff --git a/src/gallium/drivers/galahad/glhd_screen.c b/src/gallium/drivers/galahad/glhd_screen.c
index 288941b..b6cc41d 100644
--- a/src/gallium/drivers/galahad/glhd_screen.c
+++ b/src/gallium/drivers/galahad/glhd_screen.c
@@ -370,7 +370,7 @@ galahad_screen_create(struct pipe_screen *screen)
 
    glhd_screen->screen = screen;
 
-   glhd_warn("Created screen %p", glhd_screen);
+   glhd_warn("Created screen %p", (void *) glhd_screen);
 
    return &glhd_screen->base;
 }




More information about the mesa-commit mailing list