diff options
| author | Jim Meyering <jim@meyering.net> | 1998-06-29 02:11:07 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1998-06-29 02:11:07 +0000 |
| commit | dd9470cb58f9c668279aa8dab8164440b73daaad (patch) | |
| tree | cf22a0d981deca2485740b4b6ec6efd6ae15793d /src/tac-pipe.c | |
| parent | Change all uses of unlocked-wrapped functions to their upper case wrapper names. (diff) | |
| download | coreutils-dd9470cb58f9c668279aa8dab8164440b73daaad.tar.gz coreutils-dd9470cb58f9c668279aa8dab8164440b73daaad.zip | |
Change all uses of unlocked-wrapped functions to their upper case wrapper names.
Diffstat (limited to 'src/tac-pipe.c')
| -rw-r--r-- | src/tac-pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tac-pipe.c b/src/tac-pipe.c index 8e21d1cc3..5e9f6fbe4 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); } } |
