From: Steve Holme Date: Sat, 13 Dec 2014 14:55:26 +0000 (+0000) Subject: curl_ntlm_msgs.c: Another attempt to fix compilation warning X-Git-Tag: curl-7_40_0~157 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2924dd6703eeb1fe72dd7788eabdcc5e65189d8b;p=curl curl_ntlm_msgs.c: Another attempt to fix compilation warning curl_ntlm_msgs.c:170: 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 2e3a65c01..0998cb44c 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -166,8 +166,8 @@ static unsigned int readint_le(unsigned char *buf) */ static unsigned short readshort_le(unsigned char *buf) { - return ((unsigned short)((unsigned short)buf[0]) | - (unsigned short)((unsigned short)buf[1] << 8)); + return (unsigned short)((unsigned short)((unsigned short)buf[0]) | + (unsigned short)((unsigned short)buf[1] << 8)); } /*