From 21a7a96c9030c0ac69a5af3c5bbc70f4b251877a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 19 Dec 2016 09:19:51 +0100 Subject: Curl_recv_has_postponed_data: silence compiler warnings Follow-up to d00f2a8f2 --- lib/sendf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/sendf.c b/lib/sendf.c index c3458a2b6..760169782 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 -- cgit v1.2.3