diff options
author | San Jacobs | 2025-06-06 19:50:11 +0200 |
---|---|---|
committer | San Jacobs | 2025-06-06 19:50:11 +0200 |
commit | 45da2936ece2fe3bbf9832c6e8016d518d545304 (patch) | |
tree | 90944dac8e30ee2f61ea115d89be538f51c4dd41 | |
parent | 78863f98c01d6f5834c18d2fc12ffd391837ba47 (diff) | |
download | better-report-45da2936ece2fe3bbf9832c6e8016d518d545304.tar.gz better-report-45da2936ece2fe3bbf9832c6e8016d518d545304.tar.bz2 better-report-45da2936ece2fe3bbf9832c6e8016d518d545304.zip |
Minor printing fix
-rwxr-xr-x | main.odin | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -73,8 +73,9 @@ main :: proc() { fmt.printf("📁 {}\n", path_info.name)
walk_directory(path_info.fullpath, &file_count, &file_list, 1)
} else {
- fmt.println("File submitted! Processing file...\n")
+ fmt.println("File submitted! Processing file...")
append(&file_list, strings.clone(path_info.fullpath))
+ file_count = 2 // Yes, I know
}
for file, f in file_list {
|