diff options
Diffstat (limited to 'hurd/vpprintf.c')
-rw-r--r-- | hurd/vpprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/vpprintf.c b/hurd/vpprintf.c index 6a138a783c..a523a89cde 100644 --- a/hurd/vpprintf.c +++ b/hurd/vpprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,94,97,2000 Free Software Foundation, Inc. +/* Copyright (C) 1991,94,97,2000,01 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -58,7 +58,7 @@ vpprintf (io_t port, const char *format, va_list arg) _IO_cookie_init (&temp_f.cfile, _IO_NO_READS, (void *) port, (cookie_io_functions_t) { write: do_write }); - done = _IO_vfprintf (&temp_f.cfile.__fp, format, arg); + done = _IO_vfprintf (&temp_f.cfile.__fp.file, format, arg); #else |