1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-29 21:05:59 +02:00

32-bit fix

This commit is contained in:
Brian Fiete 2023-01-26 11:13:30 -05:00
parent 1291089f47
commit aae2215942

View file

@ -36,7 +36,7 @@ namespace System.IO
return .Err(.OpenError(err));
int64 fileSize = fs.Length;
outData.Reserve(fileSize);
outData.Reserve((.)fileSize);
while (true)
{