diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-09-23 21:35:40 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-09-23 21:35:40 +0000 |
| commit | f7506f876cb547a9e8295afd60738502d8fa48a7 (patch) | |
| tree | ca851f5ea009bd9b04fb010aedc92e60e4234659 /lib/libstand | |
| parent | cea1d019fe5e6854aada37efb2823ec406e8ec19 (diff) | |
Notes
Diffstat (limited to 'lib/libstand')
| -rw-r--r-- | lib/libstand/inet_ntoa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libstand/inet_ntoa.c b/lib/libstand/inet_ntoa.c index 59539873c8c5..c7efb0a3f61d 100644 --- a/lib/libstand/inet_ntoa.c +++ b/lib/libstand/inet_ntoa.c @@ -51,7 +51,7 @@ inet_ntoa(in) { static const char fmt[] = "%u.%u.%u.%u"; static char ret[sizeof "255.255.255.255"]; - char *src = (char *) ∈ + unsigned char *src = (unsigned char *) ∈ sprintf(ret, fmt, src[0], src[1], src[2], src[3]); return (ret); |
