mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
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:
parent
c383f21c10
commit
188cc7a9e0
2 changed files with 8 additions and 1 deletions
|
@ -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),
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue