Skip to content

Commit bc37718

Browse files
committed
reduce: Fix build due to std.mem.Alignment changes.
Closes ziglang#23884.
1 parent bc2f7c7 commit bc37718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/compiler/reduce.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ fn parse(gpa: Allocator, file_path: []const u8) !Ast {
403403
file_path,
404404
std.math.maxInt(u32),
405405
null,
406-
1,
406+
.fromByteUnits(1),
407407
0,
408408
) catch |err| {
409409
fatal("unable to open '{s}': {s}", .{ file_path, @errorName(err) });

0 commit comments

Comments
 (0)