mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-19 21:10:30 +00:00
Fix typo in try_copy_caller_location
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user