diff options
author | joeyh <joeyh> | 2006-08-20 22:37:20 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2006-08-20 22:37:20 +0000 |
commit | 79881487962d274e73b475458b6a1847789ca562 (patch) | |
tree | d0a4b024ce4a9fdbf88df4d72f83345ed9c2e8a9 | |
parent | fba236a29d973360915b168a83f50e54e1ff1c75 (diff) | |
download | moreutils-79881487962d274e73b475458b6a1847789ca562.tar.gz |
* Add missing \n to sponge usage. Closes: #383944
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | sponge.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 3ca9be6..99643c8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +moreutils (0.17) UNRELEASED; urgency=low + + * Add missing \n to sponge usage. Closes: #383944 + + -- Joey Hess <joeyh@debian.org> Sun, 20 Aug 2006 18:36:04 -0400 + moreutils (0.16) unstable; urgency=low * Change the default ts format to include the month and day, for consistency @@ -30,7 +30,7 @@ #include <string.h> void usage() { - printf("sponge <file>: suck in all input from stdin and write it to <file>"); + printf("sponge <file>: suck in all input from stdin and write it to <file>\n"); exit(0); } |