summaryrefslogtreecommitdiff
path: root/src/tac-pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tac-pipe.c')
-rw-r--r--src/tac-pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tac-pipe.c b/src/tac-pipe.c
index 5e9f6fbe4..8e21d1cc3 100644
--- a/src/tac-pipe.c
+++ b/src/tac-pipe.c
@@ -208,7 +208,7 @@ print_line (FILE *out_stream, const Buf *x,
{
char *a = (i == bol->i ? bol->ptr : x->p[i].start);
char *b = (i == bol_next->i ? bol_next->ptr : ONE_PAST_END (x, i));
- FWRITE (a, 1, b - a, out_stream);
+ fwrite (a, 1, b - a, out_stream);
}
}