Mesa (master): util: Match printf format to silence warning.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sat Aug 21 09:38:55 UTC 2010


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

Author: José Fonseca <jfonseca at vmware.com>
Date:   Sat Aug 21 10:38:22 2010 +0100

util: Match printf format to silence warning.

---

 src/gallium/auxiliary/util/u_debug_describe.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_debug_describe.c b/src/gallium/auxiliary/util/u_debug_describe.c
index 5c7808f..343358d 100644
--- a/src/gallium/auxiliary/util/u_debug_describe.c
+++ b/src/gallium/auxiliary/util/u_debug_describe.c
@@ -13,7 +13,7 @@ void
 debug_describe_resource(char* buf, const struct pipe_resource *ptr)
 {
    if(ptr->target == PIPE_BUFFER)
-      util_sprintf(buf, "pipe_buffer<%u>", util_format_get_stride(ptr->format, ptr->width0));
+      util_sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
    else if(ptr->target == PIPE_TEXTURE_1D)
       util_sprintf(buf, "pipe_texture1d<%u,%s,%u>", ptr->width0, util_format_short_name(ptr->format), ptr->last_level);
    else if(ptr->target == PIPE_TEXTURE_2D)




More information about the mesa-commit mailing list