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 <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
7630161376
commit
cbd1e67574
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue