aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2023-03-17 09:25:49 +0100
committerJakub Konka <kubkon@jakubkonka.com>2023-03-18 21:53:36 +0100
commit37192bcdcb38be2266133f6d46dce5a842984c06 (patch)
treef529668b8c48d0c2b6d123bccfc0bf8556c218a1 /lib/std
parentf1e25cf43ec60075a4fc6f3eceb5a3af1f9f0712 (diff)
downloadzig-37192bcdcb38be2266133f6d46dce5a842984c06.tar.gz
zig-37192bcdcb38be2266133f6d46dce5a842984c06.zip
macos: HCS PoC working
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/c/darwin.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/c/darwin.zig b/lib/std/c/darwin.zig
index ef31bc6d53..4e5bc73c38 100644
--- a/lib/std/c/darwin.zig
+++ b/lib/std/c/darwin.zig
@@ -3316,7 +3316,7 @@ pub fn getKernError(err: kern_return_t) KernE {
pub fn unexpectedKernError(err: KernE) std.os.UnexpectedError {
if (std.os.unexpected_error_tracing) {
- std.debug.print("unexpected errno: {d}\n", .{@enumToInt(err)});
+ std.debug.print("unexpected error: {d}\n", .{@enumToInt(err)});
std.debug.dumpCurrentStackTrace(null);
}
return error.Unexpected;