summaryrefslogtreecommitdiff
path: root/src/tac-pipe.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-06-29 15:57:45 +0000
committerJim Meyering <jim@meyering.net>1998-06-29 15:57:45 +0000
commit257c5c4737ce0399316199903ae402ae9e794a84 (patch)
tree649dc55a3e71f5f0cc99fa9b3cb1bfe460536e38 /src/tac-pipe.c
parent391c960cba3d7207149f5148d99c068331add803 (diff)
downloadcoreutils-257c5c4737ce0399316199903ae402ae9e794a84.tar.xz
revert back to using lower case _unlocked wrapper names
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);
}
}