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
This commit is contained in:
Jan Schmidt 2008-09-17 13:59:21 +00:00 committed by Tim-Philipp Müller
parent e0d25d42db
commit 051dba6c01

View file

@ -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;
}
}