removed GST_*_CAST. Disabling of type checking is done in glib.
authorBenjamin Otte <otte@gnome.org>
Sat, 13 Dec 2003 16:59:51 +0000 (16:59 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 2 Jan 2011 14:30:04 +0000 (14:30 +0000)
Original commit message from CVS:
removed GST_*_CAST. Disabling of type checking is done in glib.

ext/jack/gstjackbin.c

index cb1839c..b0cea9b 100644 (file)
@@ -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;
     }