diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-09 10:18:04 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-09 10:19:33 +0100 |
commit | 3e0a0dd7ed915b4150ce122e0d67c13ad05ba744 (patch) | |
tree | 2333c03b967053ab6850c2c086c3898e74c97dd2 /Userland/ls.cpp | |
parent | e9cdb6bb9bcc1417af1bc01f950d006ae8c98f22 (diff) | |
download | serenity-3e0a0dd7ed915b4150ce122e0d67c13ad05ba744.zip |
Fix all current build warnings in the userland.
Diffstat (limited to 'Userland/ls.cpp')
-rw-r--r-- | Userland/ls.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/ls.cpp b/Userland/ls.cpp index 0f9086c9cb..fa1f3e71db 100644 --- a/Userland/ls.cpp +++ b/Userland/ls.cpp @@ -4,8 +4,10 @@ #include <LibC/errno.h> #include <LibC/string.h> -int main(int c, char** v) +int main(int argc, char** argv) { + (void) argc; + (void) argv; bool colorize = true; DIR* dirp = opendir("."); |