gst/wavparse/gstwavparse.c: Use correct format strings for integer types.

Original commit message from CVS:
Patch by: Vincent Torri <vtorri at univ-evry dot fr>
* gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
Use correct format strings for integer types.
This commit is contained in:
Vincent Torri 2007-04-17 10:14:43 +00:00 committed by Sebastian Dröge
parent c383f21c10
commit 188cc7a9e0
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2007-04-17 Sebastian Dröge <slomo@circular-chaos.org>
Patch by: Vincent Torri <vtorri at univ-evry dot fr>
* gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
Use correct format strings for integer types.
2007-04-17 Sebastian Dröge <slomo@circular-chaos.org>
* gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),

View file

@ -1324,7 +1324,7 @@ invalid_blockalign:
invalid_bps:
{
GST_ELEMENT_ERROR (wav, STREAM, FAILED, (NULL),
("Stream claims av_bsp = %lu, which is more than %lu - invalid data",
("Stream claims av_bsp = %u, which is more than %u - invalid data",
wav->av_bps, wav->blockalign * wav->rate));
g_free (codec_name);
return GST_FLOW_ERROR;