diff options
author | Ron Yorston <rmy@pobox.com> | 2021-02-05 11:24:06 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-02-05 11:24:06 +0000 |
commit | 32e19e7ae8b0d76d69871ba234e8f0af31baff4e (patch) | |
tree | 6fdc833a444e0dd6fd359b21a8d463856917a387 /coreutils/yes.c | |
parent | 4fb71406b884c6ac0a9a4d2acf7a32b544611f70 (diff) | |
parent | cad3fc743aa7c7744e4fcf044371f0fda50fa51f (diff) | |
download | busybox-w32-32e19e7ae8b0d76d69871ba234e8f0af31baff4e.tar.gz busybox-w32-32e19e7ae8b0d76d69871ba234e8f0af31baff4e.tar.bz2 busybox-w32-32e19e7ae8b0d76d69871ba234e8f0af31baff4e.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'coreutils/yes.c')
-rw-r--r-- | coreutils/yes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/yes.c b/coreutils/yes.c index a51b1ad8e..38ffff46c 100644 --- a/coreutils/yes.c +++ b/coreutils/yes.c | |||
@@ -47,7 +47,7 @@ int yes_main(int argc UNUSED_PARAM, char **argv) | |||
47 | #endif | 47 | #endif |
48 | pp = argv; | 48 | pp = argv; |
49 | while (1) { | 49 | while (1) { |
50 | fputs(*pp, stdout); | 50 | fputs_stdout(*pp); |
51 | if (!*++pp) | 51 | if (!*++pp) |
52 | break; | 52 | break; |
53 | putchar(' '); | 53 | putchar(' '); |