mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
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:
parent
a212adfb2c
commit
00a8f6ac84
2 changed files with 7 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue