summaryrefslogtreecommitdiffstats
path: root/ext/jack
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-12-13 16:59:51 +0000
committerBenjamin Otte <otte@gnome.org>2003-12-13 16:59:51 +0000
commitee37f90d5deb90c0bd0a00c2cd0c27f8434c1b32 (patch)
tree4349f00d94ba04b3831728db8633b3b5dbc69c4f /ext/jack
parentd2ef360eef07db87999fcccc2f8bc968744a042e (diff)
downloadgst-plugins-bad-ee37f90d5deb90c0bd0a00c2cd0c27f8434c1b32.tar.gz
gst-plugins-bad-ee37f90d5deb90c0bd0a00c2cd0c27f8434c1b32.tar.bz2
gst-plugins-bad-ee37f90d5deb90c0bd0a00c2cd0c27f8434c1b32.zip
removed GST_*_CAST. Disabling of type checking is done in glib.
Original commit message from CVS: removed GST_*_CAST. Disabling of type checking is done in glib.
Diffstat (limited to 'ext/jack')
-rw-r--r--ext/jack/gstjackbin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/jack/gstjackbin.c b/ext/jack/gstjackbin.c
index cb1839c4..b0cea9bc 100644
--- a/ext/jack/gstjackbin.c
+++ b/ext/jack/gstjackbin.c
@@ -279,7 +279,7 @@ process (jack_nframes_t nframes, void *arg)
bin->nframes = nframes;
JACK_DEBUG ("jackbin: iterating to process %ld frames of audio...", nframes);
- if (!gst_bin_iterate (GST_BIN_CAST (bin))) {
+ if (!gst_bin_iterate (GST_BIN (bin))) {
g_warning ("bin failed to iterate");
return -1;
}