Skip to content

Commit 1d182bd

Browse files
author
Junio C Hamano
committed
compat/inet_ntop: do not use u_int
It is pointless. Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 93b0d86 commit 1d182bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compat/inet_ntop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ inet_ntop6(src, dst, size)
9393
*/
9494
char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp;
9595
struct { int base, len; } best, cur;
96-
u_int words[NS_IN6ADDRSZ / NS_INT16SZ];
96+
unsigned int words[NS_IN6ADDRSZ / NS_INT16SZ];
9797
int i;
9898

9999
/*

0 commit comments

Comments
 (0)