fix 32 bit compilation

This commit is contained in:
Andrew Kelley 2024-03-07 12:20:15 -07:00
parent 4f1e5f78f6
commit 6b8c7540a8

View File

@ -3849,7 +3849,7 @@ fn docsCopyFallible(comp: *Compilation) anyerror!void {
const header_bytes = std.mem.asBytes(&file_header);
const padding = p: {
const remainder = stat.size % 512;
const remainder: u16 = @intCast(stat.size % 512);
const n = if (remainder > 0) 512 - remainder else 0;
break :p padding_buffer[0..n];
};