mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
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:
parent
63079b12bc
commit
b121bf3571
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue