aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorandrewkraevskii <andrew.kraevskii@gmail.com>2025-01-20 02:01:55 +0300
committerAlex Rønne Petersen <alex@alexrp.com>2025-01-21 10:54:14 +0100
commitf1ce1aff1139bab680963da4d43245407a9cba20 (patch)
treefe552e426ff05685d178b44663c1e7e5b5d1e955 /lib/std
parentf1f269c6ee6b08e9d649072b0481dd8d1fda36b7 (diff)
downloadzig-f1ce1aff1139bab680963da4d43245407a9cba20.tar.gz
zig-f1ce1aff1139bab680963da4d43245407a9cba20.zip
std.debug: fix format on ConfigurableTrace
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/debug.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
index cb294bf660..38922a7655 100644
--- a/lib/std/debug.zig
+++ b/lib/std/debug.zig
@@ -1513,7 +1513,7 @@ pub fn ConfigurableTrace(comptime size: usize, comptime stack_frame_count: usize
}
pub fn format(
- t: Trace,
+ t: @This(),
comptime fmt: []const u8,
options: std.fmt.FormatOptions,
writer: anytype,