From: Timo Sirainen Date: Thu, 29 Oct 2020 10:32:44 +0000 (+0200) Subject: lib: test-istream - Don't try to return void X-Git-Tag: 2.3.13~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e7342877f88ef2ee4c80816e16a554bac5079ac9;p=thirdparty%2Fdovecot%2Fcore.git lib: test-istream - Don't try to return void --- diff --git a/src/lib/test-istream.c b/src/lib/test-istream.c index 58a2e1aa9d..cedc650539 100644 --- a/src/lib/test-istream.c +++ b/src/lib/test-istream.c @@ -61,7 +61,7 @@ static void test_istream_next_line_expect(struct istream *is, const char *expect unsigned int i) { const char *line = i_stream_next_line(is); - return test_assert_strcmp_idx(line, expect, i); + test_assert_strcmp_idx(line, expect, i); } static void test_istream_next_line(void)