Get rid of warning

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2710 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2007-02-16 01:06:29 +00:00
parent 4b52d5bf1b
commit be17bcb617
@@ -268,7 +268,7 @@ read_be_f80 (uio_Stream *fp, sint32 *v)
else if (shift < 0)
mant >>= -shift;
*v = sign ? -(sint32)mant : mant;
*v = sign ? -(sint32)mant : (sint32)mant;
return true;
}