Bluetooth: Fix not printing new line in BT_DBG

This was causing output such as bellow:

bt: bt_gatt_attr_write_ccc: No space to store CCC cfgbt: bt_gatt_attr_write_ccc: No space to store CCC cfgDisconnected

Change-Id: I8aff67b9c4b407e8a2da939c27bea05a597dcf67
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
Luiz Augusto von Dentz 2015-06-04 16:56:10 +03:00 committed by Anas Nashif
commit 5963f573b0

View file

@ -252,7 +252,7 @@ int bt_gatt_attr_write_ccc(const bt_addr_le_t *peer,
}
if (i == ccc->cfg_len) {
BT_WARN("No space to store CCC cfg");
BT_WARN("No space to store CCC cfg\n");
return -ENOMEM;
}
}