summaryrefslogtreecommitdiffstats
path: root/gst/wavparse
diff options
context:
space:
mode:
authorVincent Torri <vtorri@univ-evry.fr>2007-04-17 10:14:43 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2007-04-17 10:14:43 +0000
commit188cc7a9e087ebff4d7e22d88b3cf2a26cd4b5ff (patch)
treed3a77e075cc64c6c6e4c3aaa7c4f682b7892e28f /gst/wavparse
parentc383f21c10ef090c4fab063d21593a482b2f9c3d (diff)
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.
Diffstat (limited to 'gst/wavparse')
-rw-r--r--gst/wavparse/gstwavparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c
index a1be072c..8c3590f4 100644
--- a/gst/wavparse/gstwavparse.c
+++ b/gst/wavparse/gstwavparse.c
@@ -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;