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:
Robert Swain 2009-10-01 14:19:41 +02:00 committed by Wim Taymans
parent f58a2b71b5
commit fc56adc2e3

View file

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