bt: Fix bracket warning
Merges https://github.com/espressif/esp-idf/pull/2568
This commit is contained in:
parent
3ed0f7697d
commit
b5c58557fc
1 changed files with 2 additions and 1 deletions
|
@ -2192,9 +2192,10 @@ void gatt_end_operation(tGATT_CLCB *p_clcb, tGATT_STATUS status, void *p_data)
|
|||
(*p_disc_cmpl_cb)(conn_id, disc_type, status);
|
||||
} else if (p_cmpl_cb && op) {
|
||||
(*p_cmpl_cb)(conn_id, op, status, &cb_data);
|
||||
} else
|
||||
} else {
|
||||
GATT_TRACE_WARNING ("gatt_end_operation not sent out op=%d p_disc_cmpl_cb:%p p_cmpl_cb:%p",
|
||||
operation, p_disc_cmpl_cb, p_cmpl_cb);
|
||||
}
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
|
|
Loading…
Reference in a new issue