From: Daniel Stenberg Date: Wed, 13 Apr 2005 06:52:03 +0000 (+0000) Subject: fix compiler warning X-Git-Tag: curl-7_14_0~180 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e26b2a65b8946ca32479addeda2754a14587ba7;p=thirdparty%2Fcurl.git fix compiler warning --- diff --git a/lib/ssluse.c b/lib/ssluse.c index d54a92b5d3..0af7da41ef 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -707,6 +707,8 @@ int Curl_ossl_close_all(struct SessionHandle *data) ENGINE_free(data->state.engine); data->state.engine = NULL; } +#else + (void)data; #endif return 0; }