diff options
| author | jakubtomsu <66876057+jakubtomsu@users.noreply.github.com> | 2026-02-10 19:19:30 +0100 |
|---|---|---|
| committer | jakubtomsu <66876057+jakubtomsu@users.noreply.github.com> | 2026-02-10 19:19:30 +0100 |
| commit | 874ffa0385046efdab5b03f2bfc04bb735968400 (patch) | |
| tree | 20b8fcb71b4457123472b8b9ce80b6031de49bcd /core/debug/trace/trace_cpp.odin | |
| parent | 53cb56cc2196cc435567a0293a639f59ffc2bc1c (diff) | |
remove core:fmt dependency from core:debug/trace
Diffstat (limited to 'core/debug/trace/trace_cpp.odin')
| -rw-r--r-- | core/debug/trace/trace_cpp.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/debug/trace/trace_cpp.odin b/core/debug/trace/trace_cpp.odin index 8ef377cef..49a5a9055 100644 --- a/core/debug/trace/trace_cpp.odin +++ b/core/debug/trace/trace_cpp.odin @@ -164,7 +164,7 @@ _resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> F } else if info: Dl_info; dladdr(rawptr(address), &info) != 0 && info.dli_sname != "" { frame.procedure = strings.clone_from_cstring(info.dli_sname, btc.allocator) } else { - frame.procedure = fmt.aprintf("(procedure: 0x%x)", allocator=btc.allocator) + fl.procedure = _format_missing_proc(address, allocator) } frame.line = i32(line) return 0 |