From 15d8bb2105f307b48005906d754c18e69538ccae Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 25 Sep 2006 00:54:32 +0000 Subject: Compiler warning fix --- lib/getinfo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/getinfo.c b/lib/getinfo.c index 62cedfc05..8e44b53ff 100644 --- a/lib/getinfo.c +++ b/lib/getinfo.c @@ -214,8 +214,10 @@ CURLcode Curl_getinfo(struct SessionHandle *data, CURLINFO info, ...) #ifdef MSG_PEEK else { /* use the socket */ - if(recv((int)c->sock[FIRSTSOCKET], (void*)&buf, 1, MSG_PEEK) == 0) + if(recv((RECV_TYPE_ARG1)c->sock[FIRSTSOCKET], (RECV_TYPE_ARG2)&buf, + (RECV_TYPE_ARG3)1, (RECV_TYPE_ARG4)MSG_PEEK) == 0) { *param_longp = -1; /* FIN received */ + } } #endif } -- cgit v1.2.3