From: Daniel Stenberg Date: Sat, 19 Jun 2004 09:38:08 +0000 (+0000) Subject: prevent compiler warning X-Git-Tag: curl-7_12_1~257 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf3f1ef28494b12c90dd8310da39c88e73d54a16;p=thirdparty%2Fcurl.git prevent compiler warning --- diff --git a/lib/ssluse.c b/lib/ssluse.c index 5443853054..c35a52b5c4 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -1050,7 +1050,7 @@ static void ssl_tls_trace(int direction, int ssl_ver, int content_type, Curl_debug(data, CURLINFO_TEXT, ssl_buf, txt_len, NULL); Curl_debug(data, (direction == 1) ? CURLINFO_SSL_DATA_OUT : - CURLINFO_SSL_DATA_IN, buf, len, NULL); + CURLINFO_SSL_DATA_IN, (char *)buf, len, NULL); (void) ssl; } #endif