From: Amit KS Date: Thu, 1 Nov 2018 10:05:35 +0000 (+0530) Subject: Implicit typecast fix for vd build X-Git-Tag: accepted/tizen/4.0/unified/20181213.000255~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F48%2F192348%2F1;p=platform%2Fupstream%2Fiotivity.git Implicit typecast fix for vd build https://github.sec.samsung.net/RS7-IOTIVITY/IoTivity/pull/332 (cherry picked from commit 543625f924cd772f6d2fb37523b4378b364ee85a) Change-Id: If333b26bbac68ed575d1a9b88f5518b4f86dffd1 Signed-off-by: Amit KS --- diff --git a/service/easy-setup/enrollee/src/samsung/sc_easysetup.c b/service/easy-setup/enrollee/src/samsung/sc_easysetup.c index 70d22b5..b4cdc0e 100755 --- a/service/easy-setup/enrollee/src/samsung/sc_easysetup.c +++ b/service/easy-setup/enrollee/src/samsung/sc_easysetup.c @@ -341,7 +341,7 @@ void ReadUserdataCb(OCRepPayload* payload, char* resourceType, void** userdata) pWifiConfProp->candidateAPInfo[i].channel = (int) cd_channel; g_SCProperties.candidateAPInfo[i].channel = cd_channel; OIC_LOG_V(INFO_PRIVATE, SC_ENROLLEE_TAG, "[User specific property] %s : %d", - SC_RSRVD_ES_VENDOR_CANDIDATE_CHANNEL, cd_channel); + SC_RSRVD_ES_VENDOR_CANDIDATE_CHANNEL, (int) cd_channel); } if (OCRepPayloadGetPropString(repPayload[i], SC_RSRVD_ES_VENDOR_BSSID, &cd_bssid)) {