registrychunks: Fix a printf compile warning on 64-bit platforms

This commit is contained in:
Jan Schmidt 2009-11-04 17:52:21 +00:00
parent 6042793c26
commit 94bb0ee718

View file

@ -810,6 +810,6 @@ _priv_gst_registry_chunks_load_plugin (GstRegistry * registry, gchar ** in,
/* Errors */
fail:
GST_INFO ("Reading plugin failed after %d bytes", end - start);
GST_INFO ("Reading plugin failed after %u bytes", (guint) (end - start));
return FALSE;
}