We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78d3f2a commit 1f1e51aCopy full SHA for 1f1e51a
subsys/bluetooth/shell/bt.c
@@ -586,7 +586,7 @@ static void connected(struct bt_conn *conn, uint8_t err)
586
}
587
588
589
-static void disconencted_set_new_default_conn_cb(struct bt_conn *conn, void *user_data)
+static void disconnected_set_new_default_conn_cb(struct bt_conn *conn, void *user_data)
590
{
591
struct bt_conn_info info;
592
@@ -622,7 +622,7 @@ static void disconnected(struct bt_conn *conn, uint8_t reason)
622
default_conn = NULL;
623
624
/* If we are connected to other devices, set one of them as default */
625
- bt_conn_foreach(BT_CONN_TYPE_LE, disconencted_set_new_default_conn_cb, NULL);
+ bt_conn_foreach(BT_CONN_TYPE_LE, disconnected_set_new_default_conn_cb, NULL);
626
627
628
0 commit comments