From cbd1e67574b9f4c6752848974eb074cc1432b790 Mon Sep 17 00:00:00 2001 From: Emil Gydesen Date: Wed, 14 Dec 2022 21:51:08 +0100 Subject: [PATCH] Bluetooth: Audio: Remove newlines from HAS log statements Removes two log statements in HAS that added a newline, which it shouldn't. Signed-off-by: Emil Gydesen --- subsys/bluetooth/audio/has.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subsys/bluetooth/audio/has.c b/subsys/bluetooth/audio/has.c index d0f02ed14eb..45c5c4c2ed2 100644 --- a/subsys/bluetooth/audio/has.c +++ b/subsys/bluetooth/audio/has.c @@ -347,7 +347,7 @@ static void control_point_ntf_complete(struct bt_conn *conn, void *user_data) { struct has_client *client = client_get(conn); - LOG_DBG("conn %p\n", (void *)conn); + LOG_DBG("conn %p", (void *)conn); /* Resubmit if needed */ if (client != NULL && @@ -362,7 +362,7 @@ static void control_point_ind_complete(struct bt_conn *conn, { if (err) { /* TODO: Handle error somehow */ - LOG_ERR("conn %p err 0x%02x\n", (void *)conn, err); + LOG_ERR("conn %p err 0x%02x", (void *)conn, err); } control_point_ntf_complete(conn, NULL);