From baaf0ba358787dcab708449399fd5eda25311b4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20B=C3=B6ck?= Date: Thu, 30 Mar 2017 14:59:14 +0200 Subject: curl: fix callback functions to match prototype The function tool_debug_cb doesn't match curl_debug_callback in curl.h (unsigned vs. signed char* for 3rd param). Bug: https://curl.haxx.se/mail/lib-2017-03/0120.html --- src/tool_cb_dbg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tool_cb_dbg.h') diff --git a/src/tool_cb_dbg.h b/src/tool_cb_dbg.h index 7ac15cf9b..c1cbc8073 100644 --- a/src/tool_cb_dbg.h +++ b/src/tool_cb_dbg.h @@ -28,7 +28,7 @@ */ int tool_debug_cb(CURL *handle, curl_infotype type, - unsigned char *data, size_t size, + char *data, size_t size, void *userdata); #endif /* HEADER_CURL_TOOL_CB_DBG_H */ -- cgit v1.2.1