Skip to content

Commit

Permalink
[Bluetooth] Fix non-debug build (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaszm authored Dec 22, 2023
1 parent a9b37e0 commit 3927451
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BluetoothControl/BluetoothControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ class BluetoothControl : public PluginHost::IPlugin
DiscoverableChanged(false, adapter::BREDR);
}
}
void AdvertisingRemoved(const uint8_t instance)
void AdvertisingRemoved(const uint8_t instance VARIABLE_IS_NOT_USED)
{
/* This event will fire if a BLE discovery scan is complete by timeout.
But will not fire is the discovery is stopped by a command (!). */
Expand Down
2 changes: 1 addition & 1 deletion BluetoothSDPServer/BluetoothSDPServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ namespace Plugin {
_lock.Unlock();
}

/* virtual */ void BluetoothSDPServer::Deinitialize(PluginHost::IShell* service)
/* virtual */ void BluetoothSDPServer::Deinitialize(PluginHost::IShell* service VARIABLE_IS_NOT_USED)
{
if (_service != nullptr) {
ASSERT(_service == service);
Expand Down

0 comments on commit 3927451

Please sign in to comment.