mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
bugfix: wrong function due to missing char
Original commit message from CVS: bugfix: wrong function due to missing char
This commit is contained in:
parent
c760bb88b7
commit
d89dd2d325
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ gst_parse_element_set (gchar *value, GstElement *element, graph_t *graph)
|
|||
case G_TYPE_ULONG:
|
||||
case G_TYPE_UINT64:
|
||||
g_value_init (&v2, G_TYPE_ULONG);
|
||||
g_value_set_long (&v2, strtoul (pos, NULL, 0));
|
||||
g_value_set_ulong (&v2, strtoul (pos, NULL, 0));
|
||||
if (!g_value_transform (&v2, &v)) goto error;
|
||||
break;
|
||||
case G_TYPE_FLOAT:
|
||||
|
|
Loading…
Reference in a new issue