summaryrefslogtreecommitdiffstats
path: root/ext/jack
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2008-09-17 13:59:21 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2008-09-17 13:59:21 +0000
commit6cc8ef3018beaae99bb5eb07d124c1efd85aa8c5 (patch)
tree678057f7e5aa9c796564e3227d6ed7f0c707399d /ext/jack
parent07f3b573f5fdae67ea57f60ee4e5ba11e90fa08a (diff)
downloadgst-plugins-bad-6cc8ef3018beaae99bb5eb07d124c1efd85aa8c5.tar.gz
gst-plugins-bad-6cc8ef3018beaae99bb5eb07d124c1efd85aa8c5.tar.bz2
gst-plugins-bad-6cc8ef3018beaae99bb5eb07d124c1efd85aa8c5.zip
Fix compiler warnings on OS/X
Original commit message from CVS: * ext/jack/gstjackaudiosink.c: (jack_process_cb): * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew): Fix compiler warnings on OS/X
Diffstat (limited to 'ext/jack')
-rw-r--r--ext/jack/gstjackaudiosink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/jack/gstjackaudiosink.c b/ext/jack/gstjackaudiosink.c
index ec257deb..265ec68c 100644
--- a/ext/jack/gstjackaudiosink.c
+++ b/ext/jack/gstjackaudiosink.c
@@ -243,7 +243,7 @@ jack_process_cb (jack_nframes_t nframes, void *arg)
wrong_size:
{
GST_ERROR_OBJECT (sink, "nbytes (%d) != flen (%d)",
- nframes * sizeof (sample_t), flen);
+ (gint) (nframes * sizeof (sample_t)), flen);
return 1;
}
}