]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(usage): Correct bug-reporting email address.
authorJim Meyering <jim@meyering.net>
Sun, 22 Aug 1999 09:45:52 +0000 (09:45 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 22 Aug 1999 09:45:52 +0000 (09:45 +0000)
(tsort): Remove trailing `\n' in error format.

src/tsort.c

index 0eb9b57961f3a771393e1c48cac32b0e7a8232ec..0b36a33683ee1dac20b6aa85d03ba2b44aa09b1f 100644 (file)
@@ -98,7 +98,7 @@ With no FILE, or when FILE is -, read standard input.\n\
       --help       display this help and exit\n\
       --version    output version information and exit\n"),
              program_name);
-      puts (_("\nReport bugs to <textutils-bugs@gnu.org>."));
+      puts (_("\nReport bugs to <bug-textutils@gnu.org>."));
     }
 
   exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
@@ -440,7 +440,7 @@ tsort (const char *file)
   assert (n_strings >= 0);
   if (n_strings > 0)
     {
-      error (0, 0, _("%s: input contains a loop:\n"),
+      error (0, 0, _("%s: input contains a loop:"),
             (have_read_stdin ? "-" : file));
 
       /* Print out loop.  */