From: Amit Purwar Date: Mon, 3 Sep 2018 11:41:23 +0000 (+0530) Subject: removed the unused path variable from the log X-Git-Tag: submit/tizen/20180905.040745^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F88%2F188288%2F2;p=platform%2Fcore%2Fapi%2Fbluetooth.git removed the unused path variable from the log Change-Id: Ic31b778dc82a3fa045bdfb3166eea26624ad976c Signed-off-by: Amit Purwar --- diff --git a/src/bluetooth-gatt.c b/src/bluetooth-gatt.c index 28e5df6..df158d0 100644 --- a/src/bluetooth-gatt.c +++ b/src/bluetooth-gatt.c @@ -174,7 +174,7 @@ static int __get_gatt_handle_by_uuid(GSList *list, const char *uuid, for (l = list; l; l = g_slist_next(l)) { bt_gatt_common_s *common = (bt_gatt_common_s *)l->data; bt_get_uuid_name(common->uuid, &name); - BT_INFO("%s %s [%s]", common->path + 38, common->uuid, name); + BT_INFO("%s [%s]", common->uuid, name); g_free(name); } return BT_ERROR_NO_DATA;