g_list_length is unsigned
authorBenjamin Otte <otte@gnome.org>
Thu, 9 Oct 2003 19:13:19 +0000 (19:13 +0000)
committerBenjamin Otte <otte@gnome.org>
Thu, 9 Oct 2003 19:13:19 +0000 (19:13 +0000)
Original commit message from CVS:
g_list_length is unsigned

gst/registries/gstxmlregistry.c

index e7043bd..19f2576 100644 (file)
@@ -1605,7 +1605,7 @@ gst_xml_registry_rebuild (GstRegistry *registry)
 {
   GList *walk = NULL, *plugins = NULL, *prune = NULL;
   GError *error = NULL;
-  gint length;
+  guint length;
   GstXMLRegistry *xmlregistry = GST_XML_REGISTRY (registry);
  
   walk = registry->paths;