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 01c27e8be587fc625fa11547998fc22fbc1d4fff..f0a8adbd6822a9f3d2304e6ea6d28a98e7c3067e 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