Skip to content
Snippets Groups Projects
Commit 7820391c authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: empty body in an if-statement

parent 148866bc
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ int Curl_ssl_check_cxn(struct connectdata *conn);
#else
/* When SSL support is not present, just define away these function calls */
#define Curl_ssl_init() 1
#define Curl_ssl_cleanup()
#define Curl_ssl_cleanup() do { } while (0)
#define Curl_ssl_connect(x,y) CURLE_FAILED_INIT
#define Curl_ssl_connect_nonblocking(x,y,z) (z=z, CURLE_FAILED_INIT)
#define Curl_ssl_close_all(x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment