mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
portability fix
Original commit message from CVS: portability fix
This commit is contained in:
parent
cfc1bc586d
commit
3134b0b900
1 changed files with 2 additions and 1 deletions
|
@ -2261,7 +2261,8 @@ gst_element_save_thyself (GstObject *object,
|
|||
else if (G_IS_PARAM_SPEC_ENUM (spec))
|
||||
contents = g_strdup_printf ("%d", g_value_get_enum (&value));
|
||||
else if (G_IS_PARAM_SPEC_INT64 (spec))
|
||||
contents = g_strdup_printf ("%lld", g_value_get_int64 (&value));
|
||||
contents = g_strdup_printf ("%" G_GINT64_FORMAT,
|
||||
g_value_get_int64 (&value));
|
||||
else
|
||||
contents = g_strdup_value_contents (&value);
|
||||
|
||||
|
|
Loading…
Reference in a new issue