This commit is contained in:
Ginger Bill
2017-06-07 22:09:16 +01:00
parent f60c772c11
commit 574b82c0c7
9 changed files with 224 additions and 33 deletions
+1 -1
View File
@@ -1023,7 +1023,7 @@ fmt_arg :: proc(fi: ^FmtInfo, arg: any, verb: rune) {
case i16: fmt_int(fi, u128(a), true, 16, verb);
case i32: fmt_int(fi, u128(a), true, 32, verb);
case i64: fmt_int(fi, u128(a), true, 64, verb);
case i128: fmt_int(fi, u128(a), false, 128, verb);
case i128: fmt_int(fi, u128(a), true, 128, verb);
case uint: fmt_int(fi, u128(a), false, 8*size_of(uint), verb);
case u8: fmt_int(fi, u128(a), false, 8, verb);