summaryrefslogtreecommitdiff
path: root/Userland/Utilities/usermod.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/usermod.cpp')
-rw-r--r--Userland/Utilities/usermod.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Utilities/usermod.cpp b/Userland/Utilities/usermod.cpp
index eb6122fabd..17cc041c73 100644
--- a/Userland/Utilities/usermod.cpp
+++ b/Userland/Utilities/usermod.cpp
@@ -30,11 +30,11 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
int gid = 0;
bool lock = false;
bool unlock = false;
- const char* new_home_directory = nullptr;
+ char const* new_home_directory = nullptr;
bool move_home = false;
- const char* shell = nullptr;
- const char* gecos = nullptr;
- const char* username = nullptr;
+ char const* shell = nullptr;
+ char const* gecos = nullptr;
+ char const* username = nullptr;
auto args_parser = Core::ArgsParser();
args_parser.set_general_help("Modify a user account");