Skip to content

Commit

Permalink
schannel: Fixed compilation warning in vtls.c
Browse files Browse the repository at this point in the history
vtls.c:688:43: warning: unused parameter 'data'
  • Loading branch information
captain-caveman2k committed Aug 8, 2014
1 parent ea864fb commit cda4aab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/vtls/curl_schannel.h
Expand Up @@ -131,6 +131,7 @@ int Curl_schannel_random(unsigned char *entropy, size_t length);
#define curlssl_check_cxn(x) (x=x, -1)
#define curlssl_data_pending Curl_schannel_data_pending
#define CURL_SSL_BACKEND CURLSSLBACKEND_SCHANNEL
#define curlssl_random(x,y,z) Curl_schannel_random(y,z)
#define curlssl_random(x,y,z) ((void)x, Curl_schannel_random(y,z))

#endif /* USE_SCHANNEL */
#endif /* HEADER_CURL_SCHANNEL_H */

0 comments on commit cda4aab

Please sign in to comment.