From: Steve Holme Date: Sun, 20 Mar 2016 11:14:58 +0000 (+0000) Subject: inet_pton.c: Fixed compilation warnings X-Git-Tag: curl-7_48_0~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f046ac48d67c8597a7d6d8dff835436f9d628da2;p=thirdparty%2Fcurl.git inet_pton.c: Fixed compilation warnings warning: conversion to 'unsigned char' from 'int' may alter its value --- diff --git a/lib/inet_pton.c b/lib/inet_pton.c index 7d4714db78..cf8b88a1d0 100644 --- a/lib/inet_pton.c +++ b/lib/inet_pton.c @@ -188,7 +188,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 >> 8) & 0xff); *tp++ = (unsigned char) (val & 0xff); saw_xdigit = 0; val = 0; @@ -205,7 +205,7 @@ inet_pton6(const char *src, unsigned char *dst) if(saw_xdigit) { if(tp + INT16SZ > endp) return (0); - *tp++ = (unsigned char) (val >> 8) & 0xff; + *tp++ = (unsigned char) ((val >> 8) & 0xff); *tp++ = (unsigned char) (val & 0xff); } if(colonp != NULL) {