aboutsummaryrefslogtreecommitdiff
path: root/coreutils/yes.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/yes.c')
-rw-r--r--coreutils/yes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/yes.c b/coreutils/yes.c
index 9a435a761..0ad25926f 100644
--- a/coreutils/yes.c
+++ b/coreutils/yes.c
@@ -43,7 +43,7 @@ int yes_main(int argc UNUSED_PARAM, char **argv)
43 do { 43 do {
44 pp = argv; 44 pp = argv;
45 while (1) { 45 while (1) {
46 fputs(*pp, stdout); 46 fputs_stdout(*pp);
47 if (!*++pp) 47 if (!*++pp)
48 break; 48 break;
49 putchar(' '); 49 putchar(' ');