From: Paul Eggert Date: Sat, 7 Aug 2004 06:33:59 +0000 (+0000) Subject: (purge_directory): Fix format buffer typos in warning strings. X-Git-Tag: release_1_15~131 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=68ff77508ca46f0213b646e4577882e42c2ec812;p=debian%2Ftar (purge_directory): Fix format buffer typos in warning strings. --- diff --git a/src/incremen.c b/src/incremen.c index 1ef55e55..77772316 100644 --- a/src/incremen.c +++ b/src/incremen.c @@ -521,14 +521,14 @@ purge_directory (char const *directory_name) if (deref_stat (true, p, &st)) { stat_diag (p); - WARN((0, 0, _("%s: Not purging directory %s: unable to stat"), + WARN((0, 0, _("%s: Not purging directory: unable to stat"), quotearg_colon (p))); continue; } else if (one_file_system_option && st.st_dev != root_device) { WARN((0, 0, - _("%s: directory %s is on a different device: not purging"), + _("%s: directory is on a different device: not purging"), quotearg_colon (p))); continue; }