portability fix

Original commit message from CVS:
portability fix
This commit is contained in:
Thomas Vander Stichele 2002-12-09 23:20:09 +00:00
parent cfc1bc586d
commit 3134b0b900

View file

@ -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);