summaryrefslogtreecommitdiff
path: root/Userland/Utilities/cpp-lexer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/cpp-lexer.cpp')
-rw-r--r--Userland/Utilities/cpp-lexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/cpp-lexer.cpp b/Userland/Utilities/cpp-lexer.cpp
index 991214bab1..fbc2f49c38 100644
--- a/Userland/Utilities/cpp-lexer.cpp
+++ b/Userland/Utilities/cpp-lexer.cpp
@@ -12,7 +12,7 @@
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
Core::ArgsParser args_parser;
- const char* path = nullptr;
+ char const* path = nullptr;
args_parser.add_positional_argument(path, "Cpp File", "cpp-file", Core::ArgsParser::Required::Yes);
args_parser.parse(arguments);