From 2924dd6703eeb1fe72dd7788eabdcc5e65189d8b Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 13 Dec 2014 14:55:26 +0000 Subject: [PATCH] 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 --- lib/curl_ntlm_msgs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index 2e3a65c01990f4..0998cb44cc257f 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)); } /*