v4l2: Fix typo contol -> control

https://bugzilla.gnome.org/show_bug.cgi?id=725632
This commit is contained in:
William Manley 2014-03-08 19:29:58 -05:00 committed by Nicolas Dufresne
parent d3bd3ecc3e
commit 4f47442c7f

View file

@ -1026,7 +1026,7 @@ ctrl_failed:
}
static gboolean
set_contol (GQuark field_id, const GValue * value, gpointer user_data)
set_control (GQuark field_id, const GValue * value, gpointer user_data)
{
GstV4l2Object *v4l2object = user_data;
GQuark normalised_field_id;
@ -1070,7 +1070,7 @@ set_contol (GQuark field_id, const GValue * value, gpointer user_data)
gboolean
gst_v4l2_set_controls (GstV4l2Object * v4l2object, GstStructure * controls)
{
return gst_structure_foreach (controls, set_contol, v4l2object);
return gst_structure_foreach (controls, set_control, v4l2object);
}
gboolean