xml-formatter: Use G_GUINT64_FORMAT where needed

This commit is contained in:
Thibault Saunier 2013-04-21 21:29:29 -03:00
parent f5eb42c664
commit dcb1114806

View file

@ -854,8 +854,8 @@ _save_keyframes (GString * str, GESTrackElement * trackelement)
GstTimedValue *value;
value = (GstTimedValue *) tmp->data;
append_escaped (str, g_markup_printf_escaped (" %lld:%f ",
(long long int) value->timestamp, value->value));
append_escaped (str, g_markup_printf_escaped (" %" G_GUINT64_FORMAT
":%f ", value->timestamp, value->value));
}
append_escaped (str, g_markup_printf_escaped ("'/>\n"));
} else