mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-13 16:29:21 +00:00
Fix 32-bit compilation
This commit is contained in:
@ -283,7 +283,8 @@ namespace AudioCodec97
|
||||
|
||||
do
|
||||
{
|
||||
size_t Wrote = (KAPI.Memory.PageSize > Length) ? Length : KAPI.Memory.PageSize;
|
||||
size_t Wrote = (KAPI.Memory.PageSize > Length) ? size_t(Length)
|
||||
: size_t(KAPI.Memory.PageSize);
|
||||
|
||||
if (Wrote == 0)
|
||||
break;
|
||||
|
Reference in New Issue
Block a user