registrychunks: Fix a printf compile warning on 64-bit platforms
authorJan Schmidt <thaytan@noraisin.net>
Wed, 4 Nov 2009 17:52:21 +0000 (17:52 +0000)
committerJan Schmidt <thaytan@noraisin.net>
Wed, 4 Nov 2009 17:52:21 +0000 (17:52 +0000)
gst/gstregistrychunks.c

index 75653d1..12e0f5a 100644 (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;
 }