Skip to content

Commit ec109dd

Browse files
committed
CNetIf: suppress unused variable warning in getBSSID dummy implementation
1 parent 7e83b8b commit ec109dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/lwIpWrapper/src/CNetIf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class CNetIf {
208208

209209
/* default dummy implementation because ethernet does not have that */
210210
virtual const char* getSSID() { return nullptr; }
211-
virtual uint8_t* getBSSID(uint8_t* bssid) { return nullptr; }
211+
virtual uint8_t* getBSSID(uint8_t* bssid) { (void)bssid; return nullptr; }
212212
virtual int32_t getRSSI() { return 0; }
213213
virtual uint8_t getEncryptionType() { return 0; }
214214

0 commit comments

Comments
 (0)