diff options
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; |