From ca27055cdaa82fc26a8d9f8bf6a71de995adc539 Mon Sep 17 00:00:00 2001 From: Ali Chraghi Date: Mon, 3 Oct 2022 20:04:30 +0330 Subject: all: rename `@maximum` to `@max` and `@minimum` to `@min` --- lib/std/debug.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/std/debug.zig') diff --git a/lib/std/debug.zig b/lib/std/debug.zig index 4511f6baaa..d79379e85b 100644 --- a/lib/std/debug.zig +++ b/lib/std/debug.zig @@ -2087,7 +2087,7 @@ pub fn ConfigurableTrace(comptime size: usize, comptime stack_frame_count: usize const tty_config = detectTTYConfig(); const stderr = io.getStdErr().writer(); - const end = @minimum(t.index, size); + const end = @min(t.index, size); const debug_info = getSelfDebugInfo() catch |err| { stderr.print( "Unable to dump stack trace: Unable to open debug info: {s}\n", -- cgit v1.2.3