mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 08:55:33 +00:00
gst/gstregistrybinary.c: Fix print statement in an even more portable way.
Original commit message from CVS: * gst/gstregistrybinary.c: (gst_registry_binary_read_cache): Fix print statement in an even more portable way.
This commit is contained in:
parent
12aaf988aa
commit
b7d6efdbd5
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-01-29 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
|
||||
Fix print statement in an even more portable way.
|
||||
|
||||
2007-01-29 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/gst/gstreamer-sections.txt:
|
||||
|
|
|
@ -784,8 +784,8 @@ gst_registry_binary_read_cache (GstRegistry * registry, const char *location)
|
|||
for (;
|
||||
((size_t) in + sizeof (GstBinaryPluginElement)) <
|
||||
(size_t) contents + size;) {
|
||||
GST_INFO ("reading binary registry %ld(%x)/%ld",
|
||||
(size_t) in - (size_t) contents,
|
||||
GST_INFO ("reading binary registry %" G_GSIZE_FORMAT "(%x)/%"
|
||||
G_GSIZE_FORMAT, (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");
|
||||
|
|
Loading…
Reference in a new issue