From: Wim Taymans Date: Thu, 9 Apr 2009 09:42:48 +0000 (+0200) Subject: info: fix compilation, %08x needs an unsigned int X-Git-Tag: RELEASE-0.10.23~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4e9c87fccb0b44cac08d143b4f7125ee462ee44;p=platform%2Fupstream%2Fgstreamer.git info: fix compilation, %08x needs an unsigned int %08x needs an unsigned int, so give it that. --- diff --git a/gst/gstinfo.c b/gst/gstinfo.c index 01c27e8..f0a8adb 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -1510,7 +1510,7 @@ gst_info_dump_mem_line (gchar * linebuf, gsize linebuf_size, } g_snprintf (linebuf, linebuf_size, "%08x: %-48.48s %-16.16s", - mem_offset, hexstr, ascstr); + (guint) mem_offset, hexstr, ascstr); } void