mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
audioresample: fix printf variable type
Change printf variable type from %lu to %" G_GUINT64_FORMAT " as it should be for guint64. Fixes #596981
This commit is contained in:
parent
f58a2b71b5
commit
fc56adc2e3
1 changed files with 3 additions and 2 deletions
|
@ -959,8 +959,9 @@ gst_audio_resample_check_discont (GstAudioResample * resample, GstBuffer * buf)
|
|||
return FALSE;
|
||||
|
||||
GST_WARNING_OBJECT (resample,
|
||||
"encountered timestamp discontinuity of %lu samples = %" GST_TIME_FORMAT,
|
||||
delta, GST_TIME_ARGS (gst_util_uint64_scale_int_round (delta, GST_SECOND,
|
||||
"encountered timestamp discontinuity of %" G_GUINT64_FORMAT " samples = %"
|
||||
GST_TIME_FORMAT, delta,
|
||||
GST_TIME_ARGS (gst_util_uint64_scale_int_round (delta, GST_SECOND,
|
||||
resample->inrate)));
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue