Diff between 3fbd0bda53e00fbdc2b4bf3d04b32f685b495736 and 3c19fa1ca9e9c4006f610e95b6a8d939f4cbf894

Changed Files

File Additions Deletions Status
android/gatt.c +0 -2 modified

Full Patch

diff --git a/android/gatt.c b/android/gatt.c
index 7a6a2a2..68e2112 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -2215,7 +2215,6 @@ static void handle_client_register_for_notification(const void *buf,
 {
 	const struct hal_cmd_gatt_client_register_for_notification *cmd = buf;
 	struct notification_data *notification;
-	char uuid[MAX_LEN_UUID_STR];
 	struct gatt_client *client;
 	struct characteristic *c;
 	struct element_id match_id;
@@ -2247,7 +2246,6 @@ static void handle_client_register_for_notification(const void *buf,
 	hal_srvc_id_to_element_id(&cmd->srvc_id, &match_id);
 	service = queue_find(dev->services, match_srvc_by_element_id,
 								&match_id);
-	bt_uuid_to_string(&match_id.uuid, uuid, MAX_LEN_UUID_STR);
 	if (!service) {
 		status = HAL_STATUS_FAILED;
 		goto failed;