mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 18:56:39 +02:00
maint: sort: remove the last uses of "'%s'" in diagnostics
* src/sort.c (key_warnings): Use quote (quote_n, since there are two)
rather than literal single quotes ('%s') in diagnostic.
This commit is contained in:
@@ -2373,8 +2373,8 @@ key_warnings (struct keyfield const *gkey, bool gkey_only)
|
||||
umaxtostr (eword + 1
|
||||
+ (key->echar == SIZE_MAX), tmp));
|
||||
}
|
||||
error (0, 0, _("obsolescent key '%s' used; consider '%s' instead"),
|
||||
obuf, nbuf);
|
||||
error (0, 0, _("obsolescent key %s used; consider %s instead"),
|
||||
quote_n (0, obuf), quote_n (1, nbuf));
|
||||
}
|
||||
|
||||
/* Warn about field specs that will never match. */
|
||||
|
||||
Reference in New Issue
Block a user