Fix -Werror=return-type error in configure.
authorMartin Liska <mliska@suse.cz>
Mon, 15 Jul 2019 14:05:05 +0000 (16:05 +0200)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 10 Aug 2019 00:13:45 +0000 (01:13 +0100)
configure.ac

index 64b6f94..5362248 100644 (file)
@@ -1743,9 +1743,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;