From 0de37e10ed73cb18def0edf751e4b333d20568c9 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 17 Oct 2007 11:08:53 +0000 Subject: ash: use fdprintf, not dprintf. *: trailing whitespace removed --- shell/ash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell') diff --git a/shell/ash.c b/shell/ash.c index 2b9a8ccb6..52cf41ab5 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -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--; -- cgit v1.2.3