Skip to content

Commit

Permalink
compat/inet_ntop: do not use u_int
Browse files Browse the repository at this point in the history
It is pointless.

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Dec 20, 2006
1 parent 93b0d86 commit 1d182bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compat/inet_ntop.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ inet_ntop6(src, dst, size)
*/
char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp;
struct { int base, len; } best, cur;
u_int words[NS_IN6ADDRSZ / NS_INT16SZ];
unsigned int words[NS_IN6ADDRSZ / NS_INT16SZ];
int i;

/*
Expand Down

0 comments on commit 1d182bd

Please sign in to comment.