summaryrefslogtreecommitdiffstats
path: root/ext/mplex/vector.cc
diff options
context:
space:
mode:
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];
}