diff options
Diffstat (limited to 'src/lib/strconv/atof.go')
-rw-r--r-- | src/lib/strconv/atof.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/strconv/atof.go b/src/lib/strconv/atof.go index 8869e2032..de2464a8a 100644 --- a/src/lib/strconv/atof.go +++ b/src/lib/strconv/atof.go @@ -355,7 +355,7 @@ export func atof32(s string) (f float32, err *os.Error) { } export func atof(s string) (f float, err *os.Error) { - if floatsize == 32 { + if FloatSize == 32 { f1, err1 := atof32(s); return float(f1), err1; } |