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)
{
if (do_progress) {
/* This overwrites the progress line */
rprintf(FINFO, "%d files to consider\n", flist->count);
} else
rprintf(FINFO, "%d file%sto consider\n",
flist->count, flist->count == 1 ? " " : "s ");
} else {
rprintf(FINFO, "done\n");
}
}
void show_flist_stats(void)
{
/* 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