summaryrefslogtreecommitdiff
path: root/Userland/Utilities/head.cpp
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-04-02 16:48:05 +0100
committerAndreas Kling <kling@serenityos.org>2022-04-11 21:09:42 +0200
commitf0aba519c33058f1ddbb0a63fe2a9c1efe646ac9 (patch)
tree78b8f5a8e127c3626150f9864a3eccba8ad4a8ea /Userland/Utilities/head.cpp
parent84b67754c0026123236b7bbc88230d37000868de (diff)
downloadserenity-f0aba519c33058f1ddbb0a63fe2a9c1efe646ac9.zip
Utilities: Read positional arguments as Strings not char*s
This is a pretty trivial change so they're all batched together.
Diffstat (limited to 'Userland/Utilities/head.cpp')
-rw-r--r--Userland/Utilities/head.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/head.cpp b/Userland/Utilities/head.cpp
index d3d45e2bb7..1845239c92 100644
--- a/Userland/Utilities/head.cpp
+++ b/Userland/Utilities/head.cpp
@@ -24,7 +24,7 @@ ErrorOr<int> serenity_main(Main::Arguments args)
int byte_count = -1;
bool never_print_filenames = false;
bool always_print_filenames = false;
- Vector<char const*> files;
+ Vector<String> files;
Core::ArgsParser args_parser;
args_parser.set_general_help("Print the beginning ('head') of a file.");