From 60aeab3c38941925ccc2cba30e8bcaa896a53d96 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 8 Aug 2022 15:07:19 +0100 Subject: [PATCH] Update fmt.odin --- core/fmt/fmt.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin index 0973e7366..e68280bfe 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -1032,9 +1032,9 @@ fmt_pointer :: proc(fi: ^Info, p: rawptr, verb: rune) { } fmt_soa_pointer :: proc(fi: ^Info, p: runtime.Raw_Soa_Pointer, verb: rune) { - io.write_string(fi.writer, "#soa{0x", &fi.n) + io.write_string(fi.writer, "#soa{data=0x", &fi.n) _fmt_int(fi, u64(uintptr(p.data)), 16, false, 8*size_of(rawptr), __DIGITS_UPPER) - io.write_string(fi.writer, ", ", &fi.n) + io.write_string(fi.writer, ", index=", &fi.n) _fmt_int(fi, u64(p.index), 10, false, 8*size_of(rawptr), __DIGITS_UPPER) io.write_string(fi.writer, "}", &fi.n) }