Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/utils/ChangeLog4
-rw-r--r--winsup/utils/ssp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index a5251c402..385e4bfba 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-29 John Paul Wallington <jpw@gnu.org>
+
+ * ssp.c (usage): Add missing linefeed.
+
2004-05-27 Christopher Faylor <cgf@alum.bu.edu>
* kill.cc (listsig): Fix "kill -l" segv. NSIG includes Signal 0, so we
diff --git a/winsup/utils/ssp.c b/winsup/utils/ssp.c
index 4c3bad37d..21a4b4b59 100644
--- a/winsup/utils/ssp.c
+++ b/winsup/utils/ssp.c
@@ -801,7 +801,7 @@ usage (FILE * stream)
" ssp -v -s -l -d 0x61001000 0x61080000 hello.exe\n"
"\n");
if (stream == stderr)
- fprintf (stream, "Try '%s --help' for more information.", prog_name);
+ fprintf (stream, "Try '%s --help' for more information.\n", prog_name);
exit (stream == stderr ? 1 : 0);
}