diff options
author | Justin Bedo <cu@cua0.org> | 2025-03-14 10:27:37 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2025-03-14 10:27:37 +1100 |
commit | 34c73bcd175ad200cec79d7ca2e327c4ae691166 (patch) | |
tree | d289ec7b84b1d347947c2075e29a3a4c5c348e39 /strip-store-paths | |
parent | 58fa67ffd09d3bdfe72bef7c873ef94190dc6708 (diff) |
Diffstat (limited to 'strip-store-paths')
-rw-r--r-- | strip-store-paths/strip-store-paths.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strip-store-paths/strip-store-paths.zig b/strip-store-paths/strip-store-paths.zig index 64c9036..f9859f4 100644 --- a/strip-store-paths/strip-store-paths.zig +++ b/strip-store-paths/strip-store-paths.zig @@ -1,7 +1,7 @@ const std = @import("std"); pub const File = struct { - ptr: []align(std.mem.page_size) u8, + ptr: []align(std.heap.page_size_min) u8, len: u64, allocator: std.mem.Allocator, |