| 174 | } |
| 175 | |
| 176 | static void emit_filelist_progress(int count) |
| 177 | { |
| 178 | if (quiet) |
| 179 | return; |
| 180 | if (output_needs_newline == 2) /* avoid a newline in the middle of this filelist-progress output */ |
| 181 | output_needs_newline = 0; |
| 182 | rprintf(FCLIENT, " %d files...\r", count); |
| 183 | output_needs_newline = 2; |
| 184 | } |
| 185 | |
| 186 | static void maybe_emit_filelist_progress(int count) |
| 187 | { |
no test coverage detected