gst/gstregistrybinary.c: In print statements, "%x" is for guint. Fixes build on macosx.

Original commit message from CVS:
* gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
In print statements, "%x" is for guint. Fixes build on macosx.
This commit is contained in:
Edward Hervey 2007-01-25 10:14:09 +00:00
parent a212adfb2c
commit 00a8f6ac84
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-01-25 Edward Hervey <edward@fluendo.com>
* gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
In print statements, "%x" is for guint. Fixes build on macosx.
2007-01-24 Edward Hervey <edward@fluendo.com>
* plugins/elements/gstmultiqueue.c:

View file

@ -785,7 +785,8 @@ gst_registry_binary_read_cache (GstRegistry * registry, const char *location)
((size_t) in + sizeof (GstBinaryPluginElement)) <
(size_t) contents + size;) {
GST_INFO ("reading binary registry %ld(%x)/%ld",
(size_t) in - (size_t) contents, (size_t) in - (size_t) contents, size);
(size_t) in - (size_t) contents,
(guint) ((size_t) in - (size_t) contents), size);
if (!gst_registry_binary_load_plugin (registry, &in)) {
GST_ERROR ("Problem while reading binary registry");
return FALSE;