audioop: explicit cast to fix a compiler warning

This commit is contained in:
Victor Stinner 2013-05-07 23:49:15 +02:00
parent 313f10c722
commit f2b9a340ef
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ fbound(double val, double minval, double maxval)
val = maxval;
else if (val < minval + 1)
val = minval;
return val;
return (int)val;
}