controller: fix GType name of interpolation mode enum

This commit is contained in:
Tim-Philipp Müller 2011-12-22 11:08:42 +00:00
parent abaefcbbed
commit ff59f3a553

View file

@ -63,7 +63,7 @@ gst_interpolation_mode_get_type (void)
};
if (g_once_init_enter (&gtype)) {
GType tmp = g_enum_register_static ("GstLFOWaveform", values);
GType tmp = g_enum_register_static ("GstInterpolationMode", values);
g_once_init_leave (&gtype, tmp);
}