diff --git a/ChangeLog b/ChangeLog index 808c563eab..0904bf0d56 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-29 Edward Hervey + + * gst/gstregistrybinary.c: (gst_registry_binary_read_cache): + Fix print statement in an even more portable way. + 2007-01-29 Tim-Philipp Müller * docs/gst/gstreamer-sections.txt: diff --git a/gst/gstregistrybinary.c b/gst/gstregistrybinary.c index 8544257946..8fcbe83c92 100644 --- a/gst/gstregistrybinary.c +++ b/gst/gstregistrybinary.c @@ -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");