diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-10-05 18:14:46 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-10-05 18:14:46 +0000 |
commit | c403790b6cb1c9af19a71064f71bf43ae12e77d2 (patch) | |
tree | 88e7813c09a5d1f7ea01e6acd449e6abf6bf90d2 /ext/musicbrainz | |
parent | 84807e3db3f4fbba66c2aab4401348606b43e922 (diff) | |
download | gst-plugins-bad-c403790b6cb1c9af19a71064f71bf43ae12e77d2.tar.gz gst-plugins-bad-c403790b6cb1c9af19a71064f71bf43ae12e77d2.tar.bz2 gst-plugins-bad-c403790b6cb1c9af19a71064f71bf43ae12e77d2.zip |
Another batch of printf format fixes.
Original commit message from CVS:
* ext/dts/gstdtsdec.c: (gst_dtsdec_chain):
* ext/musicbrainz/gsttrm.c: (gst_trm_setcaps):
* ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
* gst/qtdemux/qtdemux.c: (gst_qtdemux_chain), (qtdemux_parse),
(qtdemux_parse_trak):
* gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
Another batch of printf format fixes.
Diffstat (limited to 'ext/musicbrainz')
-rw-r--r-- | ext/musicbrainz/gsttrm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/musicbrainz/gsttrm.c b/ext/musicbrainz/gsttrm.c index 4732d73f..5f092b72 100644 --- a/ext/musicbrainz/gsttrm.c +++ b/ext/musicbrainz/gsttrm.c @@ -201,7 +201,7 @@ gst_trm_setcaps (GstPad * pad, GstCaps * caps) } if (trm->depth != width) { - GST_DEBUG_OBJECT (trm, "depth != width (%d != %d)", trm->depth != width); + GST_DEBUG_OBJECT (trm, "depth != width (%d != %d)", trm->depth, width); goto failure; } |