summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--sponge.c2
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
diff --git a/sponge.c b/sponge.c
index c6e4532..0389ef7 100644
--- a/sponge.c
+++ b/sponge.c
@@ -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);
}