diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/cmath.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cmath.rb b/lib/cmath.rb index 95a30c336b..1b0c65c995 100644 --- a/lib/cmath.rb +++ b/lib/cmath.rb @@ -48,7 +48,7 @@ module CMath end def log10(z) - if z.real? + if z.real? and z >= 0 log10!(z) else log(z) / log!(10) |
