From be17bcb617ea4d3b70bf25a43a2b59ee2f66dac3 Mon Sep 17 00:00:00 2001 From: avolkov Date: Fri, 16 Feb 2007 01:06:29 +0000 Subject: [PATCH] Get rid of warning git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2710 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/sound/decoders/aiffaud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/libs/sound/decoders/aiffaud.c b/sc2/src/sc2code/libs/sound/decoders/aiffaud.c index fba6780e1..b38ced0dc 100644 --- a/sc2/src/sc2code/libs/sound/decoders/aiffaud.c +++ b/sc2/src/sc2code/libs/sound/decoders/aiffaud.c @@ -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; }