From 82c42bf79c1acc7e8da29d558fe2dfa152d98026 Mon Sep 17 00:00:00 2001 From: QLeelulu Date: Tue, 5 Mar 2013 17:27:22 +0800 Subject: [PATCH] 32bit to 64bit for large num --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 0375b2d6bd..6ba174e380 100644 --- a/commands.go +++ b/commands.go @@ -5,7 +5,7 @@ import ( ) func formatFloat(f float64) string { - return strconv.FormatFloat(f, 'f', -1, 32) + return strconv.FormatFloat(f, 'f', -1, 64) } //------------------------------------------------------------------------------