gst/gstpreset.c: Make it build on OS X.

Original commit message from CVS:
2007-11-19  Julien MOUTTE  <julien@moutte.net>

* gst/gstpreset.c: (gst_preset_default_create_preset): Make
it build on OS X.
This commit is contained in:
Julien Moutte 2007-11-19 09:33:05 +00:00
parent f806905e67
commit 2bcfd33b8a
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2007-11-19 Julien MOUTTE <julien@moutte.net>
* gst/gstpreset.c: (gst_preset_default_create_preset): Make
it build on OS X.
2007-11-19 Wim Taymans <wim.taymans@gmail.com> 2007-11-19 Wim Taymans <wim.taymans@gmail.com>
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init), * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),

View file

@ -794,7 +794,7 @@ gst_preset_default_create_preset (GstPreset * self)
} }
*/ */
GST_INFO ("property '%s' (GType=%d)", property->name, GST_INFO ("property '%s' (GType=%lu)", property->name,
property->value_type); property->value_type);
param_type = property->value_type; param_type = property->value_type;
@ -838,7 +838,7 @@ gst_preset_default_create_preset (GstPreset * self)
enum_class->minimum) * rnd)), NULL); enum_class->minimum) * rnd)), NULL);
} break; } break;
default: default:
GST_WARNING ("unhandled GType=%d", param_type); GST_WARNING ("unhandled GType=%lu", param_type);
} }
} }
/* @todo: handle childproxy properties as well */ /* @todo: handle childproxy properties as well */