Fixed the variable types in inet_ntoa() to comply with API change.

This commit is contained in:
likewise 2004-04-26 13:15:26 +00:00
parent a74a801f35
commit a552a9993e

View File

@ -302,11 +302,11 @@ inet_chksum_pbuf(struct pbuf *p)
*/ */
char *inet_ntoa(struct in_addr addr) char *inet_ntoa(struct in_addr addr)
{ {
static u8_t str[16]; static char str[16];
u32_t s_addr = addr.s_addr; u32_t s_addr = addr.s_addr;
u8_t inv[3]; char inv[3];
u8_t *rp; char *rp;
u8_t *ap; char *ap;
u8_t rem; u8_t rem;
u8_t n; u8_t n;
u8_t i; u8_t i;