commit | 0de37e10ed73cb18def0edf751e4b333d20568c9 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Wed Oct 17 11:08:53 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Wed Oct 17 11:08:53 2007 +0000 |
tree | 8ab08b0e069b85f5f01ad8035a7538f16a72e63f | |
parent | 31acd1ba0a091577983ec02b336fe6388e80a942 [diff] [blame] |
ash: use fdprintf, not dprintf. *: trailing whitespace removed
diff --git a/shell/ash.c b/shell/ash.c index 2b9a8cc..52cf41a 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -8237,12 +8237,12 @@ 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--;