diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-22 15:47:08 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-22 15:47:08 +0200 |
commit | 5980007e44698071fe71a7e412785b8d04471127 (patch) | |
tree | 909c94fa0c0b6508b8c0353df7cca35bf55a09c0 /Userland/head.cpp | |
parent | 0deade2883dbbfe63b007fffef113565a56d3ba9 (diff) | |
download | serenity-5980007e44698071fe71a7e412785b8d04471127.zip |
Userland: Fix many compiler warnings.
Diffstat (limited to 'Userland/head.cpp')
-rw-r--r-- | Userland/head.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/head.cpp b/Userland/head.cpp index 5a59603f48..fe41ce3a6e 100644 --- a/Userland/head.cpp +++ b/Userland/head.cpp @@ -16,7 +16,7 @@ int main(int argc, char** argv) args_parser.add_arg("q", "Never print filenames"); args_parser.add_arg("v", "Always print filenames"); - CArgsParserResult args = args_parser.parse(argc, (const char**)argv); + CArgsParserResult args = args_parser.parse(argc, argv); int line_count = 0; if (args.is_present("n")) { |