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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user