summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-02-02 09:54:38 +0000
committerJim Meyering <jim@meyering.net>2002-02-02 09:54:38 +0000
commit7278cc2e51fba7963bc2cb9ebd7668d897a3d932 (patch)
tree51b07a420113a61f6feac7ec36802ed71947d84f
parent4166236b533b4e30a4f7d3fd2984415b2a512752 (diff)
downloadcoreutils-7278cc2e51fba7963bc2cb9ebd7668d897a3d932.tar.xz
(main): Prepend `warning: ' to the diagnostic, so it's
consistent with all of the other `... is obsolete...' diagnostics.
-rw-r--r--src/uniq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uniq.c b/src/uniq.c
index 26e2b7501..a02c92885 100644
--- a/src/uniq.c
+++ b/src/uniq.c
@@ -537,7 +537,7 @@ main (int argc, char **argv)
}
if (OBSOLETE_OPTION_WARNINGS && obsolete_skip_fields)
- error (0, 0, _("`uniq -%lu' is obsolete; use `uniq -f %lu'"),
+ error (0, 0, _("warning: `uniq -%lu' is obsolete; use `uniq -f %lu'"),
(unsigned long) skip_fields, (unsigned long) skip_fields);
if (countmode == count_occurrences && mode == output_all_repeated)