diff --git a/src/shared/bap.c b/src/shared/bap.c
index 4c5b38b..2a08f3e 100644
--- a/src/shared/bap.c
+++ b/src/shared/bap.c
DBG(bap, "req %p len %u", req, iov.iov_len);
if (req->stream && !queue_find(bap->streams, NULL, req->stream)) {
- DBG(bap, "stream %p detached, aborting op 0x%02x", req->op);
+ DBG(bap, "stream %p detached, aborting op 0x%02x", req->stream,
+ req->op);
return false;
}
ep = bap_get_local_endpoint_id(bap, req->ase);
if (!ep) {
- DBG(bap, "%s: Invalid ASE ID 0x%02x", req->ase);
+ DBG(bap, "Invalid ASE ID 0x%02x", req->ase);
ascs_ase_rsp_add(rsp, req->ase,
BT_ASCS_RSP_INVALID_ASE, BT_ASCS_REASON_NONE);
return 0;