diff options
author | David Schleef <ds@schleef.org> | 2003-07-25 19:42:28 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-07-25 19:42:28 +0000 |
commit | dd67a01ad201c24958e8d3c265c0373b0818e2ef (patch) | |
tree | 7db79192b64be9172f98f1fd11fb7dc4ccec0bca /ext/mplex | |
parent | f63b0cf6c55a53210358426c7fca0890649b8fce (diff) | |
download | gst-plugins-bad-dd67a01ad201c24958e8d3c265c0373b0818e2ef.tar.gz gst-plugins-bad-dd67a01ad201c24958e8d3c265c0373b0818e2ef.tar.bz2 gst-plugins-bad-dd67a01ad201c24958e8d3c265c0373b0818e2ef.zip |
Revert last change, because it is wrong.
Original commit message from CVS:
Revert last change, because it is wrong.
Diffstat (limited to 'ext/mplex')
-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]; } |