info: fix compilation, %08x needs an unsigned int

%08x needs an unsigned int, so give it that.
This commit is contained in:
Wim Taymans 2009-04-09 11:42:48 +02:00
parent 116c8be6bf
commit b4e9c87fcc

View 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