diff options
author | David McCullough <davidm@snapgear.com> | 2001-10-04 03:44:35 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2001-10-04 03:44:35 +0000 |
commit | dc52a36cadc2279f9cc104b921ef8f3b3ad9531a (patch) | |
tree | 37a12ba16ec3d2d2272b317c6003cc2843efedb3 /libc/inet/ntop.c | |
parent | e9edb3f271456db695dd1c809df81be330ada4d8 (diff) |
With all the headerfile changes, some functions didn't get there arg types
fixed up.
Diffstat (limited to 'libc/inet/ntop.c')
-rw-r--r-- | libc/inet/ntop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/ntop.c b/libc/inet/ntop.c index 521c1de63..32f88e20c 100644 --- a/libc/inet/ntop.c +++ b/libc/inet/ntop.c @@ -360,7 +360,7 @@ inet_ntop(af, src, dst, size) int af; const void *src; char *dst; - size_t size; + socklen_t size; { switch (af) { case AF_INET: |