From db36dfe7c94f9d6705201f892d13f153f5e4536c Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Mon, 12 May 2014 15:36:47 +0200 Subject: [PATCH] android/bluetooth: Fix minor codestyle issues --- android/bluetooth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/bluetooth.c b/android/bluetooth.c index 7a203af87..1e760d4af 100644 --- a/android/bluetooth.c +++ b/android/bluetooth.c @@ -110,7 +110,6 @@ struct device { bool found; /* if device is found in current discovery session */ unsigned int confirm_id; /* mgtm command id if command pending */ - }; struct browse_req { @@ -2263,7 +2262,8 @@ static struct mgmt_ltk_info *get_ltk_info(GKeyFile *key_file, const char *peer, info->type = g_key_file_get_integer(key_file, peer, keytype_s, NULL); - info->enc_size = g_key_file_get_integer(key_file, peer, encsize_s, NULL); + info->enc_size = g_key_file_get_integer(key_file, peer, encsize_s, + NULL); info->rand = g_key_file_get_uint64(key_file, peer, rand_s, NULL); info->rand = cpu_to_le64(info->rand); -- 2.47.3