1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:57:45 +00:00

LibGfx: Misc 32-bit build fixes

This commit is contained in:
Sergey Bugaev 2023-09-03 23:25:27 +03:00 committed by Andrew Kaster
parent 79022090bf
commit 8ebddc1ff6
3 changed files with 3 additions and 3 deletions

View file

@ -1333,7 +1333,7 @@ private:
auto const result = ((token << n | TRY(stream.read_bits(n))) << config.lsb_in_token) | low_bits;
VERIFY(result < (1ul << 32));
VERIFY(result < (1ull << 32));
return result;
}