From 172963005aa32311d6f1d31334f6c963d34389dd Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 13 Dec 2014 12:51:11 +0000 Subject: 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 --- lib/curl_ntlm_msgs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') 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)); } /* -- cgit v1.2.3