aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2026-01-28 11:43:29 +0000
committergingerBill <gingerBill@users.noreply.github.com>2026-01-28 11:43:29 +0000
commit117e74cb8b74b3eec567e16533cc269bd873bd89 (patch)
tree5aec85288cb5fc72c11c7d1d48c2934e74c9abab
parent9084d7e99b5679ba25c3dcc0f5f859939b76cc5d (diff)
Fix typo in `try_copy_caller_location`
-rw-r--r--base/runtime/print.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/runtime/print.odin b/base/runtime/print.odin
index 4a66f9743..c1b04f7cd 100644
--- a/base/runtime/print.odin
+++ b/base/runtime/print.odin
@@ -562,8 +562,8 @@ try_copy_caller_location :: #force_no_inline proc "contextless" (i: ^int, buf: [
try_copy_byte(i, buf, ':') or_return
try_copy_u64(i, buf, u64(loc.line)) or_return
if loc.column != 0 {
- try_copy_try_copy_bytetring(i, buf, ':') or_return
- try_copy_u64(i, buf, u64(loc.column)) or_return
+ try_copy_byte(i, buf, ':') or_return
+ try_copy_u64 (i, buf, u64(loc.column)) or_return
}
try_copy_byte(i, buf, ':') or_return
return true