Skip to content

Commit

Permalink
Fix another compiler warning
Browse files Browse the repository at this point in the history
fixes #10956
  • Loading branch information
Crunsher authored and gunnarbeutner committed Feb 23, 2016
1 parent 8798c34 commit debdace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/remote/base64.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit debdace

Please sign in to comment.