mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +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;
|
GstTimedValue *value;
|
||||||
|
|
||||||
value = (GstTimedValue *) tmp->data;
|
value = (GstTimedValue *) tmp->data;
|
||||||
append_escaped (str, g_markup_printf_escaped (" %lld:%f ",
|
append_escaped (str, g_markup_printf_escaped (" %" G_GUINT64_FORMAT
|
||||||
(long long int) value->timestamp, value->value));
|
":%f ", value->timestamp, value->value));
|
||||||
}
|
}
|
||||||
append_escaped (str, g_markup_printf_escaped ("'/>\n"));
|
append_escaped (str, g_markup_printf_escaped ("'/>\n"));
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in a new issue