diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2025-09-08 12:52:00 +0100 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2025-09-30 13:44:51 +0100 |
| commit | 202aeacc05a2fc53762c49d18daeefdf0fa5fbec (patch) | |
| tree | 838955ffcb20ba01523ba1f997f7f23b94708ec6 /lib/std/debug.zig | |
| parent | f1215adedab23535024a28367375a62909de6395 (diff) | |
| download | zig-202aeacc05a2fc53762c49d18daeefdf0fa5fbec.tar.gz zig-202aeacc05a2fc53762c49d18daeefdf0fa5fbec.zip | |
std: fixes
Diffstat (limited to 'lib/std/debug.zig')
| -rw-r--r-- | lib/std/debug.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug.zig b/lib/std/debug.zig index cfc442562f..c1e2d19fc8 100644 --- a/lib/std/debug.zig +++ b/lib/std/debug.zig @@ -1443,7 +1443,7 @@ pub fn ConfigurableTrace(comptime size: usize, comptime stack_frame_count: usize .index = frames.len, .instruction_addresses = frames, }; - writeStackTrace(stack_trace, stderr, tty_config) catch return; + writeStackTrace(&stack_trace, stderr, tty_config) catch return; } if (t.index > end) { stderr.print("{d} more traces not shown; consider increasing trace size\n", .{ |
