Skip to content

Commit 74ffdac

Browse files
coolbreeze413me-no-dev
authored andcommitted
fix for BLE Library Compile Error #2866 (#2876)
1 parent 4ee17ec commit 74ffdac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/BLE/src/BLEAdvertising.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ void BLEAdvertising::stop() {
262262

263263
void BLEAdvertising::setDeviceAddress(esp_bd_addr_t addr, esp_ble_addr_type_t type)
264264
{
265-
log_v(">> setPrivateAddress")
265+
log_v(">> setPrivateAddress");
266266

267267
m_advParams.own_addr_type = type;
268268
esp_err_t errRc = esp_ble_gap_set_rand_addr((uint8_t*)addr);
@@ -271,7 +271,7 @@ void BLEAdvertising::setDeviceAddress(esp_bd_addr_t addr, esp_ble_addr_type_t ty
271271
log_e("esp_ble_gap_set_rand_addr: rc=%d %s", errRc, GeneralUtils::errorToString(errRc));
272272
return;
273273
}
274-
log_v("<< setPrivateAddress")
274+
log_v("<< setPrivateAddress");
275275
} // setPrivateAddress
276276

277277
/**

0 commit comments

Comments
 (0)