Skip to content

Commit 5efccd0

Browse files
fixed restyling error
1 parent 4af4d25 commit 5efccd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platform/silabs/wifi/wf200/WifiInterface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ void wfx_dhcp_got_ipv4(uint32_t ip)
12311231
*/
12321232
uint8_t ip4_addr[4];
12331233

1234-
ip4_addr[0] = (ip) & 0xFF;
1234+
ip4_addr[0] = (ip) &0xFF;
12351235
ip4_addr[1] = (ip >> 8) & 0xFF;
12361236
ip4_addr[2] = (ip >> 16) & 0xFF;
12371237
ip4_addr[3] = (ip >> 24) & 0xFF;

0 commit comments

Comments
 (0)