Skip to content
Next Next commit
CNetIf: suppress unused variable warning in getBSSID dummy implementa…
…tion
  • Loading branch information
pennam committed Feb 21, 2025
commit 1710f5193e7b55c8b2a8725c96859a10e73eb879
2 changes: 1 addition & 1 deletion libraries/lwIpWrapper/src/CNetIf.h
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class CNetIf {

/* default dummy implementation because ethernet does not have that */
virtual const char* getSSID() { return nullptr; }
virtual uint8_t* getBSSID(uint8_t* bssid) { return nullptr; }
virtual uint8_t* getBSSID(uint8_t* bssid) { (void)bssid; return nullptr; }
virtual int32_t getRSSI() { return 0; }
virtual uint8_t getEncryptionType() { return 0; }

Expand Down