Skip to content
Snippets Groups Projects
Commit cf3f1ef2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

prevent compiler warning

parent a737864a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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