diff --git a/math/math.v b/math/math.v index 3ef57f89d1..18c4f838a7 100644 --- a/math/math.v +++ b/math/math.v @@ -36,7 +36,7 @@ fn floor(a f64) f64 { } fn fmod(a, b f64) f64 { - return C.fmod(a, b); + return C.fmod(a, b) } fn log(a f64) f64 {