From: Steve Holme Date: Sat, 13 Dec 2014 12:51:11 +0000 (+0000) Subject: curl_ntlm_msgs.c: Fixed compilation warning from commit 783b5c3b11 X-Git-Tag: curl-7_40_0~160 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=172963005aa32311d6f1d31334f6c963d34389dd;p=curl curl_ntlm_msgs.c: Fixed compilation warning from commit 783b5c3b11 curl_ntlm_msgs.c:169: warning: conversion to 'short unsigned int' from 'int' may alter its value --- diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index 26f20409c..2e3a65c01 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -166,7 +166,8 @@ static unsigned int readint_le(unsigned char *buf) */ static unsigned short readshort_le(unsigned char *buf) { - return ((unsigned short)buf[0]) | ((unsigned short)buf[1] << 8); + return ((unsigned short)((unsigned short)buf[0]) | + (unsigned short)((unsigned short)buf[1] << 8)); } /*