From 11e8cfba3d67591297c7f87965b6c3eccb69363f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 1 Aug 2025 13:00:54 -1000 Subject: [PATCH] tidy --- esphome/components/bluetooth_proxy/bluetooth_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/bluetooth_proxy/bluetooth_connection.cpp b/esphome/components/bluetooth_proxy/bluetooth_connection.cpp index 9c651ed04b..01c2aa3d22 100644 --- a/esphome/components/bluetooth_proxy/bluetooth_connection.cpp +++ b/esphome/components/bluetooth_proxy/bluetooth_connection.cpp @@ -80,7 +80,7 @@ void BluetoothConnection::dump_config() { void BluetoothConnection::update_allocated_slot_(uint64_t find_value, uint64_t set_value) { auto &allocated = this->proxy_->connections_free_response_.allocated; - auto it = std::find(allocated.begin(), allocated.end(), find_value); + auto *it = std::find(allocated.begin(), allocated.end(), find_value); if (it != allocated.end()) { *it = set_value; }