aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-06-28 11:01:57 +0100
committergingerBill <bill@gingerbill.org>2024-06-28 11:01:57 +0100
commitbef3ca98f03ed5ff77b2a8b67975ec3e4cfded6a (patch)
treec186c8b6c3e1b569ad8efcd4d0b743b438b83499
parente15c5c4692adb746bff6e7f85ca653b59ccb5384 (diff)
Fix signature
-rw-r--r--core/debug/trace/trace_nil.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/debug/trace/trace_nil.odin b/core/debug/trace/trace_nil.odin
index 33cf31364..a7f5c10fd 100644
--- a/core/debug/trace/trace_nil.odin
+++ b/core/debug/trace/trace_nil.odin
@@ -12,7 +12,7 @@ _init :: proc(ctx: ^Context) -> (ok: bool) {
_destroy :: proc(ctx: ^Context) -> bool {
return true
}
-_frames :: proc(ctx: ^Context, skip: uint, allocator: runtime.Allocator) -> []Frame {
+_frames :: proc(ctx: ^Context, skip: uint, frames_buffer: []Frame) -> []Frame {
return nil
}
_resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: runtime.Source_Code_Location) {