mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
bluetooth: fix indentation warning
This commit is contained in:
parent
d6a5cd6e82
commit
0d1285ebcf
@ -101,9 +101,9 @@ bool list_insert_after(list_t *list, list_node_t *prev_node, void *data) {
|
|||||||
assert(prev_node != NULL);
|
assert(prev_node != NULL);
|
||||||
assert(data != NULL);
|
assert(data != NULL);
|
||||||
list_node_t *node = (list_node_t *)osi_calloc(sizeof(list_node_t));
|
list_node_t *node = (list_node_t *)osi_calloc(sizeof(list_node_t));
|
||||||
if (!node)
|
if (!node) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
node->next = prev_node->next;
|
node->next = prev_node->next;
|
||||||
node->data = data;
|
node->data = data;
|
||||||
prev_node->next = node;
|
prev_node->next = node;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user