From cf3f1ef28494b12c90dd8310da39c88e73d54a16 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Sat, 19 Jun 2004 09:38:08 +0000
Subject: [PATCH] prevent compiler warning

---
 lib/ssluse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
GitLab