diff options
author | Arwed v. Merkatz <v.merkatz@gmx.net> | 2004-11-13 14:13:26 +0000 |
---|---|---|
committer | Arwed v. Merkatz <v.merkatz@gmx.net> | 2004-11-13 14:13:26 +0000 |
commit | 82a776d6450ce9fd559d995a1130cd23132af2c1 (patch) | |
tree | ad6130ac0fd62f0d4e26598eedb3e0ef4be0dff5 /configure.ac | |
parent | be213f63de9685b40011e23acaaa455fd0603f9a (diff) |
fix mplex configure check (bug #140994)
Original commit message from CVS:
fix mplex configure check (bug #140994)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 89c5c880..a2381013 100644 --- a/configure.ac +++ b/configure.ac @@ -1342,7 +1342,7 @@ main (int argc, vector<IBitStream *> inputs; job->SetupInputStreams (inputs); TestOutputStream *out = new TestOutputStream (); - Multiplexor mux (*job, *out); + Multiplexor *mux = new Multiplexor(*job, *out); return 0; } ],[ |