diff options
Diffstat (limited to 'ext/mplex/vector.cc')
-rw-r--r-- | ext/mplex/vector.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mplex/vector.cc b/ext/mplex/vector.cc index 901b1a5e..343b6284 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]; } |