diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-10-19 21:12:19 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-10-29 06:20:50 -0700 |
| commit | aa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2 (patch) | |
| tree | 3d39b4b01c9d6af60dc8a83f5950535ddecfc5a7 /lib/std/start.zig | |
| parent | 482343f2e253f2078627e696fb98ff0e1d8e82df (diff) | |
| download | zig-aa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2.tar.gz zig-aa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2.zip | |
std.Io.Threaded: implement dirAccess for Windows
Diffstat (limited to 'lib/std/start.zig')
| -rw-r--r-- | lib/std/start.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/start.zig b/lib/std/start.zig index 09c1f3b5c4..4063b2027b 100644 --- a/lib/std/start.zig +++ b/lib/std/start.zig @@ -708,7 +708,7 @@ pub inline fn callMain() u8 { switch (native_os) { .freestanding, .other => {}, else => if (@errorReturnTrace()) |trace| { - std.debug.dumpStackTrace(trace); + std.debug.dumpStackTrace(trace.*); }, } return 1; |
