aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/fakemail.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src/fakemail.c')
-rw-r--r--lib-src/fakemail.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c
index 780a104b405..940d6219425 100644
--- a/lib-src/fakemail.c
+++ b/lib-src/fakemail.c
@@ -62,8 +62,6 @@ main ()
62 62
63/* This is to declare cuserid. */ 63/* This is to declare cuserid. */
64#include <unistd.h> 64#include <unistd.h>
65
66#include <ignore-value.h>
67 65
68/* Type definitions */ 66/* Type definitions */
69 67
@@ -500,7 +498,7 @@ put_line (const char *string)
500 } 498 }
501 } 499 }
502 /* Output that much, then break the line. */ 500 /* Output that much, then break the line. */
503 ignore_value (fwrite (s, 1, breakpos - s, rem->handle)); 501 fwrite (s, 1, breakpos - s, rem->handle);
504 column = 8; 502 column = 8;
505 503
506 /* Skip whitespace and prepare to print more addresses. */ 504 /* Skip whitespace and prepare to print more addresses. */