From d4fb778f9cf95536fe6652e426528a6a103dd801 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Mon, 15 Jul 2019 16:05:05 +0200 Subject: [PATCH] Fix -Werror=return-type error in configure. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 64b6f942f..536224835 100644 --- a/configure.ac +++ b/configure.ac @@ -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 inputs; -- 2.34.1