Skip to content

Commit 5509e62

Browse files
authored
fix datatype of arg of build function in build.zig as well as it's output type
1 parent 29db5fc commit 5509e62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const std = @import("std");
22

3-
pub fn build(b: *std.build.Builder) !void {
3+
pub fn build(b: *std.Build) void {
44
const verifier = b.addExecutable(.{
55
.name = "verifier",
66
.root_source_file = .{ .path = "tools/verifier.zig" },

0 commit comments

Comments
 (0)