diff options
Diffstat (limited to 'coreutils/cat.c')
-rw-r--r-- | coreutils/cat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cat.c b/coreutils/cat.c index dae6089bd..4b3414941 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c | |||
@@ -152,7 +152,7 @@ static int catv(unsigned opts, char **argv) | |||
152 | eol_seen = (c == eol_char); | 152 | eol_seen = (c == eol_char); |
153 | #endif | 153 | #endif |
154 | visible(c, buf, opts); | 154 | visible(c, buf, opts); |
155 | fputs(buf, stdout); | 155 | fputs_stdout(buf); |
156 | } | 156 | } |
157 | } | 157 | } |
158 | if (ENABLE_FEATURE_CLEAN_UP && fd) | 158 | if (ENABLE_FEATURE_CLEAN_UP && fd) |