From: Daniel Stenberg Date: Mon, 19 Dec 2016 08:19:51 +0000 (+0100) Subject: Curl_recv_has_postponed_data: silence compiler warnings X-Git-Tag: curl-7_52_0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21a7a96c9030c0ac69a5af3c5bbc70f4b251877a;p=thirdparty%2Fcurl.git Curl_recv_has_postponed_data: silence compiler warnings Follow-up to d00f2a8f2 --- diff --git a/lib/sendf.c b/lib/sendf.c index c3458a2b61..7601697824 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -210,6 +210,8 @@ static ssize_t get_pre_recved(struct connectdata *conn, int num, char *buf, /* Use "do-nothing" macros instead of functions when workaround not used */ bool Curl_recv_has_postponed_data(struct connectdata *conn, int sockindex) { + (void)conn; + (void)sockindex; return false; } #define pre_receive_plain(c,n) do {} WHILE_FALSE