Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/bluetooth/tester/src/audio/btp_ccp.c
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,8 @@ static uint8_t tbs_originate(const void *cmd, uint16_t cmd_len, void *rsp, uint1
uri[cp->uri_len] = '\0';

err = bt_tbs_originate(cp->index, uri, &call_index);
if (err) {
/* TODO should we extend BTP to return call ID? */
if (err < 0) {
return BTP_STATUS_FAILED;
}

Expand Down