From 668231c3093ea506e9ba2aa98f0a3130ac259a5b Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Thu, 3 Sep 2015 11:32:39 +0200 Subject: inet_pton.c: Fix MSVC run-time check failure (2) This fixes another run-time check failure because of a narrowing cast on Visual C++. Closes #408 --- lib/inet_pton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/inet_pton.c') diff --git a/lib/inet_pton.c b/lib/inet_pton.c index 34dfc31e7..7d4714db7 100644 --- a/lib/inet_pton.c +++ b/lib/inet_pton.c @@ -206,7 +206,7 @@ inet_pton6(const char *src, unsigned char *dst) if(tp + INT16SZ > endp) return (0); *tp++ = (unsigned char) (val >> 8) & 0xff; - *tp++ = (unsigned char) val & 0xff; + *tp++ = (unsigned char) (val & 0xff); } if(colonp != NULL) { /* -- cgit v1.2.3