diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-10 20:39:07 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-10 20:39:07 +0000 |
commit | 2a915734a32c5aec9a6a76c13bcb074d30e64171 (patch) | |
tree | 8b5ac7073c8bf4bb6f150e33f3ebcdb07bf8beea /libc/stdio/_vfprintf.c | |
parent | c921d8a2c5cc4e31aad8f9c16fe8d8a7f3d9a4f9 (diff) |
even more fixes for vda-made breakage in vXXXfprintf
(pointed out by Peter S.Mazinger)
Diffstat (limited to 'libc/stdio/_vfprintf.c')
-rw-r--r-- | libc/stdio/_vfprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/_vfprintf.c b/libc/stdio/_vfprintf.c index b3deaddb1..685bb0dad 100644 --- a/libc/stdio/_vfprintf.c +++ b/libc/stdio/_vfprintf.c @@ -1866,7 +1866,7 @@ static int _do_one_spec(FILE * __restrict stream, libc_hidden_proto(fprintf) int VFPRINTF_internal (FILE * __restrict stream, - register const FMT_TYPE * __restrict format, + const FMT_TYPE * __restrict format, va_list arg) { ppfs_t ppfs; @@ -1954,7 +1954,7 @@ int VFPRINTF_internal (FILE * __restrict stream, libc_hidden_proto(VFPRINTF) int VFPRINTF (FILE * __restrict stream, - register const FMT_TYPE * __restrict format, + const FMT_TYPE * __restrict format, va_list arg) { int count; |