Fix -Werror=return-type error in configure.

This commit is contained in:
Martin Liska 2019-07-15 16:05:05 +02:00
parent 30f85a3189
commit feb93b516f

View file

@ -1655,9 +1655,9 @@ main (int argc,
TestOutputStream () : OutputStream () { } TestOutputStream () : OutputStream () { }
void Write (uint8_t *a, unsigned int b) { } void Write (uint8_t *a, unsigned int b) { }
void NextSegment () { } void NextSegment () { }
uint64_t SegmentSize () { } uint64_t SegmentSize () { return 0; }
void Close () { } void Close () { }
int Open () { } int Open () { return 0; }
}; };
MultiplexJob *job = new MultiplexJob (); MultiplexJob *job = new MultiplexJob ();
vector<IBitStream *> inputs; vector<IBitStream *> inputs;