From f0aba519c33058f1ddbb0a63fe2a9c1efe646ac9 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Sat, 2 Apr 2022 16:48:05 +0100 Subject: Utilities: Read positional arguments as Strings not char*s This is a pretty trivial change so they're all batched together. --- Userland/Utilities/copy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Utilities/copy.cpp') diff --git a/Userland/Utilities/copy.cpp b/Userland/Utilities/copy.cpp index f5f21cb858..04562db98e 100644 --- a/Userland/Utilities/copy.cpp +++ b/Userland/Utilities/copy.cpp @@ -25,7 +25,7 @@ struct Options { static Options parse_options(Main::Arguments arguments) { char const* type = "text/plain"; - Vector text; + Vector text; bool clear = false; Core::ArgsParser args_parser; -- cgit v1.2.3