Skip to content

Commit

Permalink
fix: increase flag buffer capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
tensorush committed Jul 21, 2024
1 parent d64b813 commit e09aea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn build(b: *std.Build) void {
const AFLplusplus_inc_path = AFLplusplus_dep.path("include/");

// Common flags
var flags = std.BoundedArray([]const u8, 12){};
var flags = std.BoundedArray([]const u8, 16){};
flags.appendSliceAssumeCapacity(&EXE_FLAGS);
flags.appendSliceAssumeCapacity(&.{ lib_path_flag, bin_path_flag });
if (target.result.cpu.arch.isX86()) {
Expand Down

0 comments on commit e09aea2

Please sign in to comment.