diff options
Diffstat (limited to 'Userland/Utilities/passwd.cpp')
-rw-r--r-- | Userland/Utilities/passwd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/passwd.cpp b/Userland/Utilities/passwd.cpp index f186982069..339d489af1 100644 --- a/Userland/Utilities/passwd.cpp +++ b/Userland/Utilities/passwd.cpp @@ -30,7 +30,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) bool del = false; bool lock = false; bool unlock = false; - const char* username = nullptr; + char const* username = nullptr; auto args_parser = Core::ArgsParser(); args_parser.set_general_help("Modify an account password."); |