Diff between 4a1da92a175a8e3cf4a55e53a40a06d02193cdf4 and 23d1c072ca45a678329192d1cc3ad82830514891

Changed Files

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

Full Patch

diff --git a/android/gatt.c b/android/gatt.c
index e74a60c..d45ea16 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -126,7 +126,7 @@ static bool scanning = false;
 
 static struct queue *gatt_clients = NULL;
 static struct queue *gatt_servers = NULL;
-static struct queue *conn_list	= NULL;		/* Connected devices */
+static struct queue *conn_list = NULL;		/* Connected devices */
 static struct queue *conn_wait_queue = NULL;	/* Devs waiting to connect */
 static struct queue *disc_dev_list = NULL;	/* Disconnected devices */
 
@@ -140,7 +140,6 @@ static void android2uuid(const uint8_t *uuid, bt_uuid_t *dst)
 
 	for (i = 0; i < 16; i++)
 		dst->value.u128.data[i] = uuid[15 - i];
-
 }
 
 static void uuid2android(const bt_uuid_t *src, uint8_t *uuid)