Skip to content

Commit b7e63e8

Browse files
authored
Update MacAddress.cpp
1 parent ad9cfbf commit b7e63e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/MacAddress.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ MacAddress::MacAddress(const uint8_t *macbytearray) {
1414
memcpy(_mac.bytes, macbytearray, sizeof(_mac.bytes));
1515
}
1616

17-
MacAddress::MacAddress((uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, uint8_t b5, uint8_t b6) {
17+
MacAddress::MacAddress(uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, uint8_t b5, uint8_t b6) {
1818
_mac.bytes[0] = b1;
1919
_mac.bytes[1] = b2;
2020
_mac.bytes[2] = b3;

0 commit comments

Comments
 (0)