mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
info: fix compilation, %08x needs an unsigned int
%08x needs an unsigned int, so give it that.
This commit is contained in:
parent
116c8be6bf
commit
b4e9c87fcc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue