Skip to content

Commit a2a3ee1

Browse files
authored
Merge pull request #2 from der-teufel-programming/main
Fix build.zig
2 parents d722b6e + cd0b597 commit a2a3ee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ pub const InitializeDiskStep = struct {
504504

505505
const stat = try file.stat();
506506
if (stat.size > max_length) {
507-
var realpath_buffer: [std.fs.MAX_PATH_BYTES]u8 = undefined;
507+
var realpath_buffer: [std.fs.max_path_bytes]u8 = undefined;
508508
std.log.err("{s}: The file '{!s}' exceeds the size of the container. The file is {:.2} large, while the container only allows for {:.2}.", .{
509509
context,
510510
dir.realpath(path, &realpath_buffer),

0 commit comments

Comments
 (0)