Skip to content

Commit e09aea2

Browse files
committed
fix: increase flag buffer capacity
1 parent d64b813 commit e09aea2

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
@@ -22,7 +22,7 @@ pub fn build(b: *std.Build) void {
2222
const AFLplusplus_inc_path = AFLplusplus_dep.path("include/");
2323

2424
// Common flags
25-
var flags = std.BoundedArray([]const u8, 12){};
25+
var flags = std.BoundedArray([]const u8, 16){};
2626
flags.appendSliceAssumeCapacity(&EXE_FLAGS);
2727
flags.appendSliceAssumeCapacity(&.{ lib_path_flag, bin_path_flag });
2828
if (target.result.cpu.arch.isX86()) {

0 commit comments

Comments
 (0)