From 7148ba56b251d26ceac7ea32013455da0688869c Mon Sep 17 00:00:00 2001 From: samanway Date: Mon, 21 Oct 2019 18:58:09 +0530 Subject: [PATCH] Build fix for visual display files - There was an undefined LOG TAG used in Caleclient_vd.c file - Replaced that with another predefined TAG https://github.sec.samsung.net/RS7-IOTIVITY/IoTivity/pull/591/commits/87dc9af44ba4e3cbf7ae87dcb5bb29434a6c672d (cherry-picked from 87dc9af44ba4e3cbf7ae87dcb5bb29434a6c672d) Change-Id: Ic4b5c7de3b92309d925261058bb6abe93ddce3f6 Signed-off-by: samanway-dey Signed-off-by: Sudipto --- resource/csdk/connectivity/src/bt_le_adapter/tizen/caleclient_vd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource/csdk/connectivity/src/bt_le_adapter/tizen/caleclient_vd.c b/resource/csdk/connectivity/src/bt_le_adapter/tizen/caleclient_vd.c index 3e58dca..bc52103 100644 --- a/resource/csdk/connectivity/src/bt_le_adapter/tizen/caleclient_vd.c +++ b/resource/csdk/connectivity/src/bt_le_adapter/tizen/caleclient_vd.c @@ -425,7 +425,7 @@ static bool CALEIsHaveServiceImpl(bt_adapter_le_device_scan_result_info_s *scanI char *compare_man_data = OICCalloc(1, (man_data_len*2)+1); if (!compare_man_data) { - OIC_LOG(ERROR, CALEADAPTER_TAG, "Memory allocation failed for compare_man_data"); + OIC_LOG(ERROR, TAG, "Memory allocation failed for compare_man_data"); OICFree(man_data); return false; } -- 2.7.4