From debdaceb44ff03f402eb3724e35de5814eb34d38 Mon Sep 17 00:00:00 2001 From: Jean Flach Date: Mon, 18 Jan 2016 09:41:52 +0100 Subject: [PATCH] Fix another compiler warning fixes #10956 --- lib/remote/base64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/remote/base64.cpp b/lib/remote/base64.cpp index 74ed58380..7dd10cd39 100644 --- a/lib/remote/base64.cpp +++ b/lib/remote/base64.cpp @@ -32,7 +32,7 @@ String Base64::Encode(const String& input) BIO_push(bio64, biomem); BIO_set_flags(bio64, BIO_FLAGS_BASE64_NO_NL); BIO_write(bio64, input.CStr(), input.GetLength()); - BIO_flush(bio64); + (void) BIO_flush(bio64); char *outbuf; long len = BIO_get_mem_data(biomem, &outbuf); -- 2.40.0