summaryrefslogtreecommitdiff
path: root/Userland/copy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/copy.cpp')
-rw-r--r--Userland/copy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/copy.cpp b/Userland/copy.cpp
index a14409029f..1a086df5df 100644
--- a/Userland/copy.cpp
+++ b/Userland/copy.cpp
@@ -36,12 +36,12 @@
struct Options {
String data;
- StringView type { "text" };
+ StringView type;
};
Options parse_options(int argc, char* argv[])
{
- const char* type = nullptr;
+ const char* type = "text/plain";
Vector<const char*> text;
Core::ArgsParser args_parser;