[CID-1053751] Remove wrong cast 81/209481/1 accepted/tizen_5.5_unified_mobile_hotfix tizen_5.5_mobile_hotfix accepted/tizen/5.5/unified/20191031.030328 accepted/tizen/5.5/unified/mobile/hotfix/20201027.065011 accepted/tizen/unified/20190712.115341 submit/tizen/20190710.225804 submit/tizen_5.5/20191031.000002 submit/tizen_5.5_mobile_hotfix/20201026.185102 tizen_5.5.m2_release
authorSeonah Moon <seonah1.moon@samsung.com>
Mon, 8 Jul 2019 08:04:36 +0000 (17:04 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Mon, 8 Jul 2019 08:04:39 +0000 (17:04 +0900)
Change-Id: Ib3a676258c822795e80b811203208f82f4f12242

src/http_transaction.c

index 370c5638db3e2d07b31bd73dab4adaf7df141b90..ef4252e02427932505eaa16735dfc555bb64c7a6 100644 (file)
@@ -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);