summaryrefslogtreecommitdiff
path: root/Userland/head.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 11:49:31 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 11:49:31 +0200
commitb07bbf383d551eca9a50667cda0daec3eb74e806 (patch)
treeee982b94d6df8d150a207892dcceb0cdd216934b /Userland/head.cpp
parentf7ede145b42043a81c7e50f85616e25875521b04 (diff)
downloadserenity-b07bbf383d551eca9a50667cda0daec3eb74e806.zip
Userland: Run clang-format on everything.
Diffstat (limited to 'Userland/head.cpp')
-rw-r--r--Userland/head.cpp4
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;
}