Kaydet (Commit) f2b9a340 authored tarafından Victor Stinner's avatar Victor Stinner

audioop: explicit cast to fix a compiler warning

üst 313f10c7
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment