diff options
author | Christopher Faylor <me@cgf.cx> | 2002-08-23 15:46:00 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-08-23 15:46:00 +0000 |
commit | 02eb4ad4d46df5eb0bbb0704c1aad8606b74c2a8 (patch) | |
tree | ae8e76ccceeb6c737885526163c2dda584312319 /winsup | |
parent | 8d9112f2f3ac7c0aa656ceb8da7b4248df228833 (diff) | |
download | cygnal-02eb4ad4d46df5eb0bbb0704c1aad8606b74c2a8.tar.gz cygnal-02eb4ad4d46df5eb0bbb0704c1aad8606b74c2a8.tar.bz2 cygnal-02eb4ad4d46df5eb0bbb0704c1aad8606b74c2a8.zip |
output some newlines.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/utils/cygpath.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/cygpath.cc b/winsup/utils/cygpath.cc index 04d848752..cbfec3b58 100644 --- a/winsup/utils/cygpath.cc +++ b/winsup/utils/cygpath.cc @@ -92,11 +92,11 @@ Other options:\n\ -c, --close HANDLE close HANDLE (for use in captured process)\n\ -i, --ignore ignore missing argument\n\ -h, --help output usage information and exit\n\ - -v, --version output version information and exit\ + -v, --version output version information and exit\n\ "); } else - fprintf(stream, "Try `%s --help' for more information.", prog_name); + fprintf(stream, "Try `%s --help' for more information.\n", prog_name); exit (ignore_flag ? 0 : status); } |