diff options
| author | San Jacobs | 2025-12-11 01:34:11 +0100 |
|---|---|---|
| committer | San Jacobs | 2025-12-11 01:34:11 +0100 |
| commit | 00121d7c14a3bfa03c5eeb6c28b5edf060baf029 (patch) | |
| tree | 706604428a7f7240669c981f6e955ef5230ac5c3 /src/main.odin | |
| parent | d9bf52320afe653b84872e091a9d0b450e2e3b14 (diff) | |
| download | better-report-00121d7c14a3bfa03c5eeb6c28b5edf060baf029.tar.gz better-report-00121d7c14a3bfa03c5eeb6c28b5edf060baf029.tar.bz2 better-report-00121d7c14a3bfa03c5eeb6c28b5edf060baf029.zip | |
Clearer little print
Diffstat (limited to 'src/main.odin')
| -rw-r--r-- | src/main.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.odin b/src/main.odin index 37c17c1..c0f66ba 100644 --- a/src/main.odin +++ b/src/main.odin @@ -746,9 +746,9 @@ walk_directory :: proc(path : string, file_number : ^int, job_list : ^[dynamic]s if wav_count>0 && !has_csv { indent_by(depth+1) if wav_count == 1 { - fmt.printf("💽 [#%d] 1 WAV file, without CSV.\n", file_number^) + fmt.printf("💽 [#%d] 1 WAV file.\n", file_number^) } else { - fmt.printf("💽 [#%d] %d WAV files, without CSV.\n", file_number^, wav_count) + fmt.printf("💽 [#%d] %d WAV files.\n", file_number^, wav_count) } append(job_list, strings.clone(path)) file_number^ += 1 @@ -803,9 +803,9 @@ walk_directory_os2 :: proc(path : string, file_number : ^int, job_list : ^[dynam if wav_count>0 && !has_csv { indent_by(depth+1) if wav_count == 1 { - fmt.printf("💽 [#%d] A WAV file, without CSV.\n", file_number^) + fmt.printf("💽 [#%d] A WAV file.\n", file_number^) } else { - fmt.printf("💽 [#%d] %d WAV files, without CSV.\n", file_number^, wav_count) + fmt.printf("💽 [#%d] %d WAV files.\n", file_number^, wav_count) } append(job_list, strings.clone(path)) file_number^ += 1 |