diff options
Diffstat (limited to 'Userland/Utilities/ln.cpp')
-rw-r--r-- | Userland/Utilities/ln.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/ln.cpp b/Userland/Utilities/ln.cpp index 6fa20fdace..b79cf44692 100644 --- a/Userland/Utilities/ln.cpp +++ b/Userland/Utilities/ln.cpp @@ -16,8 +16,8 @@ ErrorOr<int> serenity_main(Main::Arguments argmuments) bool force = false; bool symbolic = false; - const char* target = nullptr; - const char* path = nullptr; + char const* target = nullptr; + char const* path = nullptr; Core::ArgsParser args_parser; args_parser.add_option(force, "Force the creation", "force", 'f'); |