diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-06-19 09:38:08 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-06-19 09:38:08 +0000 |
commit | cf3f1ef28494b12c90dd8310da39c88e73d54a16 (patch) | |
tree | 7449b066a3cf9ac99d8654e2bb99479deffae9f9 | |
parent | a737864a1c82fe0843e4d02faf771406f612f1ba (diff) |
prevent compiler warning
-rw-r--r-- | lib/ssluse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index 544385305..c35a52b5c 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 |