2003-11-19 Nicholas Wourms <nwourms@netscape.net>
* configure.host: Enable positional arguments for printf family for Cygwin. * libc/stdio/vfprintf.c (_VFPRINTF_R): Remove extraneous pointer reference for quad_ptr_t.
This commit is contained in:
parent
e1dc8171ae
commit
64cfc6f213
|
@ -1,3 +1,10 @@
|
|||
2003-11-19 Nicholas Wourms <nwourms@netscape.net>
|
||||
|
||||
* configure.host: Enable positional arguments for printf
|
||||
family for Cygwin.
|
||||
* libc/stdio/vfprintf.c (_VFPRINTF_R): Remove extraneous
|
||||
pointer reference for quad_ptr_t.
|
||||
|
||||
2003-11-19 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/stdio/scanf.c: Don't include local.h more than once.
|
||||
|
|
|
@ -869,7 +869,7 @@ reswitch: switch (ch) {
|
|||
case 'n':
|
||||
#ifndef _NO_LONGLONG
|
||||
if (flags & QUADINT)
|
||||
*GET_ARG(N, ap, quad_ptr_t *) = ret;
|
||||
*GET_ARG(N, ap, quad_ptr_t) = ret;
|
||||
else
|
||||
#endif
|
||||
if (flags & LONGINT)
|
||||
|
|
Loading…
Reference in New Issue