simple fix: these are signed ints, not unsigned
authorBenjamin Otte <otte@gnome.org>
Tue, 6 May 2003 22:03:02 +0000 (22:03 +0000)
committerBenjamin Otte <otte@gnome.org>
Tue, 6 May 2003 22:03:02 +0000 (22:03 +0000)
Original commit message from CVS:
simple fix: these are signed ints, not unsigned

tools/gst-compprep.c

index 1f0400b..75d5de9 100644 (file)
@@ -10,7 +10,7 @@ int main(int argc,char *argv[]) {
   GstPad *pad;
   GstPadTemplate *padtemplate;
   GParamSpec **property_specs;
-  gint num_properties,i;
+  guint num_properties,i;
 
   gst_debug_set_categories(0);
   gst_info_set_categories(0);