summaryrefslogtreecommitdiff
path: root/Userland/Utilities/copy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/copy.cpp')
-rw-r--r--Userland/Utilities/copy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/copy.cpp b/Userland/Utilities/copy.cpp
index dcac098a7d..f5f21cb858 100644
--- a/Userland/Utilities/copy.cpp
+++ b/Userland/Utilities/copy.cpp
@@ -24,8 +24,8 @@ struct Options {
static Options parse_options(Main::Arguments arguments)
{
- const char* type = "text/plain";
- Vector<const char*> text;
+ char const* type = "text/plain";
+ Vector<char const*> text;
bool clear = false;
Core::ArgsParser args_parser;