required trivial fix for windows for last spandsp commit

This commit is contained in:
Jeff Lenk 2013-03-09 09:18:09 -06:00
parent e942571876
commit a324d46025

View File

@ -369,7 +369,7 @@ static __inline__ int16_t saturated_mul16(int16_t a, int16_t b)
if (product == 0x40000000)
return INT16_MAX;
/*endif*/
return product >> 15;
return (int16_t)product >> 15;
}
/*- End of function --------------------------------------------------------*/