add a trailing zero to $float

This commit is contained in:
Simon Hafner
2014-02-11 17:00:22 -06:00
parent 4b09baa0a0
commit 33fcd11236

View File

@@ -254,6 +254,8 @@ proc nimFloatToStr(x: float): string {.compilerproc.} =
var buf: array [0..59, char]
c_sprintf(buf, "%#.f", x)
result = $buf
if result[len(result)-1] == '.':
result.add("0")
proc nimInt64ToStr(x: int64): string {.compilerRtl.} =
result = newString(sizeof(x)*4)