diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:31 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:31 +0200 |
commit | b07bbf383d551eca9a50667cda0daec3eb74e806 (patch) | |
tree | ee982b94d6df8d150a207892dcceb0cdd216934b /Userland/head.cpp | |
parent | f7ede145b42043a81c7e50f85616e25875521b04 (diff) | |
download | serenity-b07bbf383d551eca9a50667cda0daec3eb74e806.zip |
Userland: Run clang-format on everything.
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; } |