summaryrefslogtreecommitdiff
path: root/Userland/Utilities/tr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/tr.cpp')
-rw-r--r--Userland/Utilities/tr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/tr.cpp b/Userland/Utilities/tr.cpp
index bcb8e9b7ac..2e932f3d80 100644
--- a/Userland/Utilities/tr.cpp
+++ b/Userland/Utilities/tr.cpp
@@ -96,8 +96,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
bool complement_flag = false;
bool delete_flag = false;
bool squeeze_flag = false;
- const char* from_chars = nullptr;
- const char* to_chars = nullptr;
+ char const* from_chars = nullptr;
+ char const* to_chars = nullptr;
Core::ArgsParser args_parser;
args_parser.add_option(complement_flag, "Take the complement of the first set", "complement", 'c');