Use impl namespace in GattServer att_cb registration, not ble

If this is the correct fix, then this shouldn't have passed CI, should
it?
pull/13653/head
Johnny Robeson 2020-09-21 17:54:12 -04:00
parent 2ab7b44f10
commit fac3ebb33b
1 changed files with 1 additions and 1 deletions

View File

@ -600,7 +600,7 @@ void BLEInstanceBase::stack_setup()
#if BLE_FEATURE_GATT_CLIENT
AttRegister((attCback_t) impl::PalAttClient::att_client_handler);
#else
AttRegister((attCback_t) ble::GattServer::att_cb);
AttRegister((attCback_t) impl::GattServer::att_cb);
#endif // BLE_FEATURE_GATT_CLIENT
#endif
}