aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-02 14:40:35 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-02 14:40:35 +0200
commite92dba9f9798dc1eadec40f6cfc2a309bca754c0 (patch)
tree06d387f31b6f37808c67b7aaecc92f89ff73fe7f /main.cpp
parentb21fa63c33e5a3b5923b94d93c25df0817a36b6f (diff)
parent9577412d9ea70d02aa212b27d89567e41d7ce8f5 (diff)
fix merge conflicts
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 3ee5b4c..dfb0a9c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -5,7 +5,7 @@
int main(int argc, char** argv) {
for (int i = 1; i < argc; i++) {
File & r = FileReader::open(argv[i]);
- printf("-- %s --\n%s\n", argv[i], r.read().c_str());
+ printf("\n-- %s --\n%s\n", argv[i], r.read().c_str());
r.close();
}