mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-01-12 12:45:35 +00:00
Fixed a cast.
This commit is contained in:
parent
5b12c61a81
commit
e2b0c6c702
@ -312,7 +312,7 @@ char *inet_ntoa(struct in_addr addr)
|
||||
u8_t i;
|
||||
|
||||
rp = str;
|
||||
ap = (u8_t *)&s_addr;
|
||||
ap = (char *)&s_addr;
|
||||
for(n = 0; n < 4; n++) {
|
||||
i = 0;
|
||||
do {
|
||||
|
Loading…
Reference in New Issue
Block a user