ash: use fdprintf, not dprintf.

*: trailing whitespace removed
This commit is contained in:
Denis Vlasenko 2007-10-17 11:08:53 +00:00
parent 31acd1ba0a
commit 0de37e10ed
3 changed files with 4 additions and 4 deletions

View File

@ -8237,12 +8237,12 @@ evalcommand(union node *cmd, int flags)
const char *p = " %s";
p++;
dprintf(preverrout_fd, p, expandstr(ps4val()));
fdprintf(preverrout_fd, p, expandstr(ps4val()));
sp = varlist.list;
for (n = 0; n < 2; n++) {
while (sp) {
dprintf(preverrout_fd, p, sp->text);
fdprintf(preverrout_fd, p, sp->text);
sp = sp->next;
if (*p == '%') {
p--;