fix the build warning 74/87474/1 accepted/tizen_3.0.m2_mobile accepted/tizen_3.0.m2_tv accepted/tizen_3.0.m2_wearable accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable tizen_3.0.m2 tizen_3.0_tv accepted/tizen/3.0.m2/mobile/20170104.122213 accepted/tizen/3.0.m2/tv/20170104.122359 accepted/tizen/3.0.m2/wearable/20170104.122800 accepted/tizen/3.0/common/20161114.105337 accepted/tizen/3.0/ivi/20161011.065140 accepted/tizen/3.0/mobile/20161015.032738 accepted/tizen/3.0/tv/20161016.003921 accepted/tizen/3.0/wearable/20161015.081829 accepted/tizen/common/20160908.134716 accepted/tizen/ivi/20160908.123240 accepted/tizen/mobile/20160908.123152 accepted/tizen/tv/20160908.123206 accepted/tizen/unified/20170309.032123 accepted/tizen/wearable/20160908.123223 submit/tizen/20160908.074828 submit/tizen_3.0.m2/20170104.093749 submit/tizen_3.0_common/20161104.104000 submit/tizen_3.0_ivi/20161010.000007 submit/tizen_3.0_mobile/20161015.000001 submit/tizen_3.0_tv/20161015.000001 submit/tizen_3.0_wearable/20161015.000001 submit/tizen_unified/20170308.100405
authorjaekuk, lee <juku1999@samsung.com>
Thu, 8 Sep 2016 07:24:40 +0000 (16:24 +0900)
committerjaekuk, lee <juku1999@samsung.com>
Thu, 8 Sep 2016 07:24:40 +0000 (16:24 +0900)
Change-Id: I8414f809dff953a12b7d45248a68f24b215c4d6d
Signed-off-by: jaekuk, lee <juku1999@samsung.com>
packaging/capi-web-url-download.spec
src/download-wrapping.c

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