summaryrefslogtreecommitdiff
path: root/Userland/ls.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-09 10:18:04 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-09 10:19:33 +0100
commit3e0a0dd7ed915b4150ce122e0d67c13ad05ba744 (patch)
tree2333c03b967053ab6850c2c086c3898e74c97dd2 /Userland/ls.cpp
parente9cdb6bb9bcc1417af1bc01f950d006ae8c98f22 (diff)
downloadserenity-3e0a0dd7ed915b4150ce122e0d67c13ad05ba744.zip
Fix all current build warnings in the userland.
Diffstat (limited to 'Userland/ls.cpp')
-rw-r--r--Userland/ls.cpp4
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(".");