summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAmit Purwar <amit.purwar@samsung.com>2018-09-03 17:11:23 +0530
committerWootak Jung <wootak.jung@samsung.com>2018-09-05 04:06:35 +0000
commit03c1f1ceb5785321c743ffb3efe252670899acd3 (patch)
tree647755db12129c07976e40b5cd8fedf7bce349af /src
parent2dd38b2dd86ea3d121d134610c0532cceda6b1f7 (diff)
downloadbluetooth-03c1f1ceb5785321c743ffb3efe252670899acd3.tar.gz
bluetooth-03c1f1ceb5785321c743ffb3efe252670899acd3.tar.bz2
bluetooth-03c1f1ceb5785321c743ffb3efe252670899acd3.zip
removed the unused path variable from the logsubmit/tizen/20180905.040745accepted/tizen/unified/20180906.054459
Change-Id: Ic31b778dc82a3fa045bdfb3166eea26624ad976c Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
Diffstat (limited to 'src')
-rw-r--r--src/bluetooth-gatt.c2
1 files changed, 1 insertions, 1 deletions
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;