diff options
Diffstat (limited to 'src/pkg/math/pow10.go')
-rw-r--r-- | src/pkg/math/pow10.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/math/pow10.go b/src/pkg/math/pow10.go index 72a6121cb..b9b074bb4 100644 --- a/src/pkg/math/pow10.go +++ b/src/pkg/math/pow10.go @@ -18,13 +18,13 @@ var pow10tab [70]float64 // Pow10 returns 10**x, the base-10 exponential of x. func Pow10(e int) float64 { if e < 0 { - return 1 / Pow10(-e); + return 1/Pow10(-e); } if e < len(pow10tab) { return pow10tab[e]; } m := e/2; - return Pow10(m) * Pow10(e-m); + return Pow10(m)*Pow10(e-m); } func init() { |