Revert "fix the build warning" 09/78809/2 accepted/tizen/common/20160707.171847 accepted/tizen/ivi/20160707.043719 accepted/tizen/mobile/20160707.043805 accepted/tizen/tv/20160707.043655 accepted/tizen/wearable/20160707.043745 submit/tizen/20160707.040147
authorjaekuk, lee <juku1999@samsung.com>
Thu, 7 Jul 2016 02:33:35 +0000 (11:33 +0900)
committerjaekuk lee <juku1999@samsung.com>
Thu, 7 Jul 2016 02:34:02 +0000 (19:34 -0700)
Change-Id: I2d53a9e88f9c260edaa47bd5a4be93e19d7aff08
Signed-off-by: jaekuk, lee <juku1999@samsung.com>
packaging/capi-web-url-download.spec
src/download-wrapping.c

index fa8585c..c93f6b8 100755 (executable)
@@ -1,7 +1,7 @@
 
 Name:  capi-web-url-download
 Summary:       CAPI for content download with web url
-Version:       1.2.8
+Version:       1.2.7
 Release:       0
 Group:         Development/Libraries
 License:       Apache-2.0
index 3f7225e..a8837a7 100755 (executable)
@@ -97,9 +97,9 @@ int download_set_network_type(int download_id,
 {
        TRACE_INFO("");
 
-       bool bIsTelephonyFeatureSupported = 0;
-       bool bIsWifiFeatureSupported = 0;
-       bool bIsWifiDirectFeatureSupported = 0;
+       int bIsTelephonyFeatureSupported = 0;
+       int bIsWifiFeatureSupported = 0;
+       int bIsWifiDirectFeatureSupported = 0;
 
        system_info_get_platform_bool (TELEPHONY_FEATURE, &bIsTelephonyFeatureSupported);
        system_info_get_platform_bool (WIFI_FEATURE, &bIsWifiFeatureSupported);
@@ -379,7 +379,7 @@ int download_get_notification_app_control(int download_id, download_notification
        TRACE_INFO("");
        if (handle == NULL)
                return DOWNLOAD_ERROR_INVALID_PARAMETER;
-       return dp_interface_get_notification_service_handle(download_id, (int)type, (void **)handle);
+       return dp_interface_get_notification_service_handle(download_id, (int)type, handle);
 }
 
 int download_set_notification_title(int download_id, const char *title)