mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
Fix -Werror=return-type error in configure.
This commit is contained in:
parent
30f85a3189
commit
feb93b516f
1 changed files with 2 additions and 2 deletions
|
@ -1655,9 +1655,9 @@ main (int argc,
|
|||
TestOutputStream () : OutputStream () { }
|
||||
void Write (uint8_t *a, unsigned int b) { }
|
||||
void NextSegment () { }
|
||||
uint64_t SegmentSize () { }
|
||||
uint64_t SegmentSize () { return 0; }
|
||||
void Close () { }
|
||||
int Open () { }
|
||||
int Open () { return 0; }
|
||||
};
|
||||
MultiplexJob *job = new MultiplexJob ();
|
||||
vector<IBitStream *> inputs;
|
||||
|
|
Loading…
Reference in a new issue