]> granicus.if.org Git - curl/commitdiff
prevent compiler warning
authorDaniel Stenberg <daniel@haxx.se>
Sat, 19 Jun 2004 09:38:08 +0000 (09:38 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 19 Jun 2004 09:38:08 +0000 (09:38 +0000)
lib/ssluse.c

index 54438530546c79fcbe6377e0ac745b39b298b232..c35a52b5c464491b5a5f89309c6a637a25ef663f 100644 (file)
@@ -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