diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-10-06 09:23:58 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-10-06 09:23:58 +0000 |
| commit | e79f14fad9c6923613aafb8c3f07069aca793984 (patch) | |
| tree | 2a21454b006874bebc27095a2013634dc9aee1ae /bin | |
| parent | 7e61a4ae7bb98ae0c40aeba8751b01d2395ce19b (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/pax/tty_subs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pax/tty_subs.c b/bin/pax/tty_subs.c index a56d56b09a78..d1a547001895 100644 --- a/bin/pax/tty_subs.c +++ b/bin/pax/tty_subs.c @@ -99,9 +99,9 @@ void tty_prnt(const char *fmt, ...) { va_list ap; - va_start(ap, fmt); if (ttyoutf == NULL) return; + va_start(ap, fmt); (void)vfprintf(ttyoutf, fmt, ap); va_end(ap); (void)fflush(ttyoutf); |
