commit f1ce1aff1139bab680963da4d43245407a9cba20 (tree)
parent f1f269c6ee6b08e9d649072b0481dd8d1fda36b7
Author: andrewkraevskii <andrew.kraevskii@gmail.com>
Date: Mon, 20 Jan 2025 02:01:55 +0300
std.debug: fix format on ConfigurableTrace
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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,