mirror of
https://github.com/ziglang/zig.git
synced 2026-02-15 22:09:49 +00:00
macho: fix 32bit build
This commit is contained in:
parent
9db63d4f1d
commit
188ad31cf3
@ -419,7 +419,7 @@ fn findFormSize(self: DwarfInfo, form: u64, di_off: usize, cuh: CompileUnit.Head
|
||||
while (i < len) : (i += 1) {
|
||||
_ = try reader.readByte();
|
||||
}
|
||||
return creader.bytes_read;
|
||||
return math.cast(usize, creader.bytes_read) orelse error.Overflow;
|
||||
},
|
||||
|
||||
dwarf.FORM.exprloc => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user