projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
116c8be
)
info: fix compilation, %08x needs an unsigned int
author
Wim Taymans
<wim.taymans@collabora.co.uk>
Thu, 9 Apr 2009 09:42:48 +0000
(11:42 +0200)
committer
Wim 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
patch
|
blob
|
history
diff --git
a/gst/gstinfo.c
b/gst/gstinfo.c
index 01c27e8be587fc625fa11547998fc22fbc1d4fff..f0a8adbd6822a9f3d2304e6ea6d28a98e7c3067e 100644
(file)
--- 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