info: fix compilation, %08x needs an unsigned int
authorWim Taymans <wim.taymans@collabora.co.uk>
Thu, 9 Apr 2009 09:42:48 +0000 (11:42 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Thu, 9 Apr 2009 09:42:48 +0000 (11:42 +0200)
%08x needs an unsigned int, so give it that.

gst/gstinfo.c

index 01c27e8..f0a8adb 100644 (file)
@@ -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