1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-24 01:39:02 +02:00

put \n in format string, not in actual diagnostic

This commit is contained in:
Jim Meyering
2004-06-26 13:12:42 +00:00
parent ce5019db7c
commit 4e6aaa2732
+2 -2
View File
@@ -156,8 +156,8 @@ main (int argc, char **argv)
error (0, 0, _("extra operand %s"),
quote (argv[optind + expected_operands]));
if (expected_operands == 2 && argc - optind == 4)
fprintf (stderr,
_("Fifos do not have major and minor device numbers.\n"));
fprintf (stderr, "%s\n",
_("Fifos do not have major and minor device numbers."));
usage (EXIT_FAILURE);
}