aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-08-08 15:07:19 +0100
committergingerBill <bill@gingerbill.org>2022-08-08 15:07:19 +0100
commit60aeab3c38941925ccc2cba30e8bcaa896a53d96 (patch)
tree86739f68729acc69ab56d724602e28b6492e0fe6
parent5e3cf45df3e781b0e5e01a55490a32bed0d9c7e3 (diff)
Update fmt.odin
-rw-r--r--core/fmt/fmt.odin4
1 files 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)
}