diff --git a/writer.go b/writer.go index a7b1d5d..4981d28 100644 --- a/writer.go +++ b/writer.go @@ -81,7 +81,7 @@ func (aw *Writer) numeric(b []byte, x int64) { } func (aw *Writer) octal(b []byte, x int64) { - s := "100" + strconv.FormatInt(x, 8) + s := strconv.FormatInt(x, 8) for len(s) < len(b) { s = s + " " }