mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
simple fix: these are signed ints, not unsigned
Original commit message from CVS: simple fix: these are signed ints, not unsigned
This commit is contained in:
parent
05adc8c15c
commit
667775fc22
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue