aboutsummaryrefslogtreecommitdiff
path: root/ch1/1-22_wordwrap.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ch1/1-22_wordwrap.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ch1/1-22_wordwrap.c b/ch1/1-22_wordwrap.c
index 8cb940e..5dbeb86 100644
--- a/ch1/1-22_wordwrap.c
+++ b/ch1/1-22_wordwrap.c
@@ -22,7 +22,6 @@ int main() {
int c, tmp, ts;
int spaces = 0;
int col = 0;
-
printf("Just type. It'll wrap to %d characters per line.\n", LINEWIDTH);
while ((c = getchar()) != EOF) {
if (col >= LINEWIDTH) {