Skip to content

Commit

Permalink
Change std.os.exit to std.process.exit
Browse files Browse the repository at this point in the history
regeliv authored and Vexu committed Mar 22, 2024

Verified

This commit was signed with the committer’s verified signature.
Exirel Florian Strzelecki
1 parent d8bb139 commit 13a9d94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/std/crypto/benchmark.zig
Original file line number Diff line number Diff line change
@@ -463,7 +463,7 @@ pub fn main() !void {
i += 1;
if (i == args.len) {
usage();
std.os.exit(1);
std.process.exit(1);
}

const seed = try std.fmt.parseUnsigned(u32, args[i], 10);
@@ -472,7 +472,7 @@ pub fn main() !void {
i += 1;
if (i == args.len) {
usage();
std.os.exit(1);
std.process.exit(1);
}

filter = args[i];
@@ -481,7 +481,7 @@ pub fn main() !void {
return;
} else {
usage();
std.os.exit(1);
std.process.exit(1);
}
}

0 comments on commit 13a9d94

Please sign in to comment.