summaryrefslogtreecommitdiff
path: root/android/client
diff options
context:
space:
mode:
authorGrzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>2015-04-29 11:15:50 +0200
committerSzymon Janc <szymon.janc@tieto.com>2015-05-08 14:54:05 +0200
commitd5ff1f6d89bc7f12031747d4725c49916b299819 (patch)
tree3f422a5fca26d26813d7e9a4df006611534c10ee /android/client
parent35210dc6bfb9132f1ab36013a24ece6ab933b5ff (diff)
downloadbluez-d5ff1f6d89bc7f12031747d4725c49916b299819.tar.gz
android/client: Fix missing new line character
New line character is missing for haltest_info. Without this logs are distorted after receiving configure mtu callback log.
Diffstat (limited to 'android/client')
-rw-r--r--android/client/if-gatt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/client/if-gatt.c b/android/client/if-gatt.c
index aaa439453..35267832f 100644
--- a/android/client/if-gatt.c
+++ b/android/client/if-gatt.c
@@ -679,7 +679,7 @@ static void gattc_listen_cb(int status, int client_if)
/* Callback invoked when the MTU for a given connection changes */
static void gattc_configure_mtu_cb(int conn_id, int status, int mtu)
{
- haltest_info("%s: conn_id=%d, status=%d, mtu=%d", __func__, conn_id,
+ haltest_info("%s: conn_id=%d, status=%d, mtu=%d\n", __func__, conn_id,
status, mtu);
}