summaryrefslogtreecommitdiffstats
path: root/ext/mplex/vector.cc
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2003-07-25 10:15:53 +0000
committerBrian Cameron <brian.cameron@sun.com>2003-07-25 10:15:53 +0000
commita3dff6621738f971d1f9cabbdfb4ba2aa664d194 (patch)
tree0980d18c5223435c529ab67c217185a87313007a /ext/mplex/vector.cc
parent6dd1ca288fb14d8ebfe3be2c050f6bb2dd4330c8 (diff)
downloadgst-plugins-bad-a3dff6621738f971d1f9cabbdfb4ba2aa664d194.tar.gz
gst-plugins-bad-a3dff6621738f971d1f9cabbdfb4ba2aa664d194.tar.bz2
gst-plugins-bad-a3dff6621738f971d1f9cabbdfb4ba2aa664d194.zip
Fixes to allow plugin to build with Forte.
Original commit message from CVS: Fixes to allow plugin to build with Forte.
Diffstat (limited to 'ext/mplex/vector.cc')
-rw-r--r--ext/mplex/vector.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mplex/vector.cc b/ext/mplex/vector.cc
index 343b6284..901b1a5e 100644
--- a/ext/mplex/vector.cc
+++ b/ext/mplex/vector.cc
@@ -9,7 +9,7 @@
AUStream::AUStream ():
cur_rd (0), cur_wr (0), totalctr (0), size (0), buf (0)
{
- buf = new (Aunit *)[AUStream::BUF_SIZE];
+ buf = new (Aunit **)[AUStream::BUF_SIZE];
}