Fix typo in last checkin that caused a regression.

Original commit message from CVS:
Fix typo in last checkin that caused a regression.
This commit is contained in:
David Schleef 2003-12-23 21:22:38 +00:00
parent 63079b12bc
commit b121bf3571

View file

@ -1144,7 +1144,7 @@ _gst_value_initialize (void)
};
info.value_table = &value_table;
gst_type_fourcc = g_type_register_static (G_TYPE_BOXED, "GstFourcc", &info, 0);
gst_value.type = gst_type_int_range;
gst_value.type = gst_type_fourcc;
gst_value_register (&gst_value);
}
@ -1213,7 +1213,7 @@ _gst_value_initialize (void)
};
info.value_table = &value_table;
gst_type_list = g_type_register_static (G_TYPE_BOXED, "GstValueList", &info, 0);
gst_value.type = gst_type_double_range;
gst_value.type = gst_type_list;
gst_value_register (&gst_value);
}