diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-02 14:40:35 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-02 14:40:35 +0200 |
commit | e92dba9f9798dc1eadec40f6cfc2a309bca754c0 (patch) | |
tree | 06d387f31b6f37808c67b7aaecc92f89ff73fe7f /main.cpp | |
parent | b21fa63c33e5a3b5923b94d93c25df0817a36b6f (diff) | |
parent | 9577412d9ea70d02aa212b27d89567e41d7ce8f5 (diff) |
fix merge conflicts
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); } |