Commit c7b562be authored by Martin Pool's avatar Martin Pool

Correct the plural in "1 file to consider." (Greg Louis)

parent 5648a819
...@@ -101,12 +101,13 @@ static void finish_filelist_progress(const struct file_list *flist) ...@@ -101,12 +101,13 @@ static void finish_filelist_progress(const struct file_list *flist)
{ {
if (do_progress) { if (do_progress) {
/* This overwrites the progress line */ /* This overwrites the progress line */
rprintf(FINFO, "%d files to consider\n", flist->count); rprintf(FINFO, "%d file%sto consider\n",
} else flist->count, flist->count == 1 ? " " : "s ");
} else {
rprintf(FINFO, "done\n"); rprintf(FINFO, "done\n");
}
} }
void show_flist_stats(void) void show_flist_stats(void)
{ {
/* Nothing yet */ /* Nothing yet */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment