mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
xml-formatter: Use G_GUINT64_FORMAT where needed
This commit is contained in:
parent
f5eb42c664
commit
dcb1114806
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue