forked from Mirrors/freeswitch
required trivial fix for windows for last spandsp commit
This commit is contained in:
parent
e942571876
commit
a324d46025
@ -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 --------------------------------------------------------*/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user