diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-10-19 14:08:21 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-10-29 06:20:50 -0700 |
| commit | 10b1eef2d3901d17cf8810689a9e1eaf6d7901d9 (patch) | |
| tree | c5312175f5f2716813322196dc10cdabf6b73f51 /lib/std/Build/Step.zig | |
| parent | b215f8667a0cc59888926fcfcbb4be4370bd2216 (diff) | |
| download | zig-10b1eef2d3901d17cf8810689a9e1eaf6d7901d9.tar.gz zig-10b1eef2d3901d17cf8810689a9e1eaf6d7901d9.zip | |
std: fix compilation errors on Windows
Diffstat (limited to 'lib/std/Build/Step.zig')
| -rw-r--r-- | lib/std/Build/Step.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Build/Step.zig b/lib/std/Build/Step.zig index aa922ff37b..d1985739bd 100644 --- a/lib/std/Build/Step.zig +++ b/lib/std/Build/Step.zig @@ -332,7 +332,7 @@ pub fn cast(step: *Step, comptime T: type) ?*T { pub fn dump(step: *Step, w: *Io.Writer, tty_config: Io.tty.Config) void { if (step.debug_stack_trace.instruction_addresses.len > 0) { w.print("name: '{s}'. creation stack trace:\n", .{step.name}) catch {}; - std.debug.writeStackTrace(&step.debug_stack_trace, w, tty_config) catch {}; + std.debug.writeStackTrace(step.debug_stack_trace, w, tty_config) catch {}; } else { const field = "debug_stack_frames_count"; comptime assert(@hasField(Build, field)); |
