mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
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:
parent
e0d25d42db
commit
051dba6c01
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue