From: Seonah Moon Date: Mon, 8 Jul 2019 08:04:36 +0000 (+0900) Subject: [CID-1053751] Remove wrong cast X-Git-Tag: submit/tizen/20190710.225804^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F209481%2F1;p=platform%2Fcore%2Fapi%2Fhttp.git [CID-1053751] Remove wrong cast Change-Id: Ib3a676258c822795e80b811203208f82f4f12242 --- diff --git a/src/http_transaction.c b/src/http_transaction.c index 370c563..ef4252e 100644 --- a/src/http_transaction.c +++ b/src/http_transaction.c @@ -470,7 +470,7 @@ int _transaction_submit(gpointer user_data) curl_easy_setopt(transaction->easy_handle, CURLOPT_PROGRESSDATA, transaction); curl_easy_setopt(transaction->easy_handle, CURLOPT_VERBOSE, 1L); - curl_easy_setopt(transaction->easy_handle, CURLOPT_DEBUGFUNCTION, (curl_debug_callback) __http_debug_received); + curl_easy_setopt(transaction->easy_handle, CURLOPT_DEBUGFUNCTION, __http_debug_received); curl_easy_setopt(transaction->easy_handle, CURLOPT_ERRORBUFFER, transaction->error); curl_easy_setopt(transaction->easy_handle, CURLOPT_PRIVATE, transaction);