1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

Userland: Fix more compiler warnings.

This commit is contained in:
Andreas Kling 2019-06-22 16:13:47 +02:00
parent 4118aaaa32
commit 3b01d7fdff
5 changed files with 8 additions and 10 deletions

View file

@ -13,7 +13,7 @@ enum Unit { Bytes, KiloBytes, MegaBytes };
int main(int argc, char** argv)
{
unsigned count = 50;
int count = 50;
Unit unit = MegaBytes;
if (argc >= 2) {