Skip to content

Commit 475e3cc

Browse files
jedi7krzychb
authored andcommitted
Fix function name typo. Closes https://github.com/espressif/esp-idf/issue/1572
1 parent ca3faa6 commit 475e3cc

File tree

1 file changed

+2
-2
lines changed
  • components/bt/bluedroid/btc/profile/std/gatt

1 file changed

+2
-2
lines changed

components/bt/bluedroid/btc/profile/std/gatt/btc_gattc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ static void btc_gattc_prepare_write_char_descr(btc_ble_gattc_args_t *arg)
631631
arg->prep_write_descr.auth_req);
632632
}
633633

634-
static void btc_gattc_execute_wrtie(btc_ble_gattc_args_t *arg)
634+
static void btc_gattc_execute_write(btc_ble_gattc_args_t *arg)
635635
{
636636
BTA_GATTC_ExecuteWrite(arg->exec_write.conn_id, arg->exec_write.is_execute);
637637
}
@@ -711,7 +711,7 @@ void btc_gattc_call_handler(btc_msg_t *msg)
711711
btc_gattc_prepare_write_char_descr(arg);
712712
break;
713713
case BTC_GATTC_ACT_EXECUTE_WRITE:
714-
btc_gattc_execute_wrtie(arg);
714+
btc_gattc_execute_write(arg);
715715
break;
716716
case BTC_GATTC_ACT_REG_FOR_NOTIFY:
717717
btc_gattc_reg_for_notify(arg);

0 commit comments

Comments
 (0)