From: Jim Meyering Date: Sat, 2 Feb 2002 09:54:38 +0000 (+0000) Subject: (main): Prepend `warning: ' to the diagnostic, so it's X-Git-Tag: TEXTUTILS-2_0_21~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7278cc2e51fba7963bc2cb9ebd7668d897a3d932;p=thirdparty%2Fcoreutils.git (main): Prepend `warning: ' to the diagnostic, so it's consistent with all of the other `... is obsolete...' diagnostics. --- diff --git a/src/uniq.c b/src/uniq.c index 26e2b75014..a02c928851 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)