diff options
Diffstat (limited to 'Userland/head.cpp')
-rw-r--r-- | Userland/head.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/head.cpp b/Userland/head.cpp index 49ae45ab18..e43e0eca91 100644 --- a/Userland/head.cpp +++ b/Userland/head.cpp @@ -1,7 +1,7 @@ +#include <LibCore/CArgsParser.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> -#include <LibCore/CArgsParser.h> int head(const String& filename, bool print_filename, int line_count); @@ -40,7 +40,7 @@ int main(int argc, char** argv) int rc = 0; - for (auto &file : files) { + for (auto& file : files) { if (head(file, print_filenames, line_count) != 0) { rc = 1; } |