diff options
author | jaekuk, lee <juku1999@samsung.com> | 2016-09-08 16:24:40 +0900 |
---|---|---|
committer | jaekuk, lee <juku1999@samsung.com> | 2016-09-08 16:24:40 +0900 |
commit | eb57317f8ecd21ae34ba99fa834ca01f25d2ff08 (patch) | |
tree | 9d99a171a5768f9bdb59a880e4fd7a8f9a273bcd | |
parent | 212bf1b2d7d01a1d80bf50a38916395f47fd87b1 (diff) | |
download | url-download-accepted/tizen_common.tar.gz url-download-accepted/tizen_common.tar.bz2 url-download-accepted/tizen_common.zip |
fix the build warningsubmit/tizen_unified/20170308.100405submit/tizen_3.0_wearable/20161015.000001submit/tizen_3.0_tv/20161015.000001submit/tizen_3.0_mobile/20161015.000001submit/tizen_3.0_ivi/20161010.000007submit/tizen_3.0_common/20161104.104000submit/tizen_3.0.m2/20170104.093749submit/tizen/20160908.074828accepted/tizen/wearable/20160908.123223accepted/tizen/unified/20170309.032123accepted/tizen/tv/20160908.123206accepted/tizen/mobile/20160908.123152accepted/tizen/ivi/20160908.123240accepted/tizen/common/20160908.134716accepted/tizen/3.0/wearable/20161015.081829accepted/tizen/3.0/tv/20161016.003921accepted/tizen/3.0/mobile/20161015.032738accepted/tizen/3.0/ivi/20161011.065140accepted/tizen/3.0/common/20161114.105337accepted/tizen/3.0.m2/wearable/20170104.122800accepted/tizen/3.0.m2/tv/20170104.122359accepted/tizen/3.0.m2/mobile/20170104.122213tizen_3.0_tvtizen_3.0.m2accepted/tizen_wearableaccepted/tizen_tvaccepted/tizen_mobileaccepted/tizen_iviaccepted/tizen_commonaccepted/tizen_3.0.m2_wearableaccepted/tizen_3.0.m2_tvaccepted/tizen_3.0.m2_mobile
Change-Id: I8414f809dff953a12b7d45248a68f24b215c4d6d
Signed-off-by: jaekuk, lee <juku1999@samsung.com>
-rwxr-xr-x | packaging/capi-web-url-download.spec | 2 | ||||
-rwxr-xr-x | src/download-wrapping.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/packaging/capi-web-url-download.spec b/packaging/capi-web-url-download.spec index c93f6b8..fa8585c 100755 --- a/packaging/capi-web-url-download.spec +++ b/packaging/capi-web-url-download.spec @@ -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 diff --git a/src/download-wrapping.c b/src/download-wrapping.c index a8837a7..3f7225e 100755 --- a/src/download-wrapping.c +++ b/src/download-wrapping.c @@ -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) |