summaryrefslogtreecommitdiffstats
path: root/newlib/libc/stdio/vfprintf.c
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-11-19 17:07:36 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-11-19 17:07:36 +0000
commit64cfc6f213541f0e9e8e57011af8a56aca8c8216 (patch)
tree873363d0a9f57cbbd61954467371b1f58ded81ba /newlib/libc/stdio/vfprintf.c
parente1dc8171aeca3fc75b473952b5054c6d5b35167a (diff)
downloadcygnal-64cfc6f213541f0e9e8e57011af8a56aca8c8216.tar.gz
cygnal-64cfc6f213541f0e9e8e57011af8a56aca8c8216.tar.bz2
cygnal-64cfc6f213541f0e9e8e57011af8a56aca8c8216.zip
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.
Diffstat (limited to 'newlib/libc/stdio/vfprintf.c')
-rw-r--r--newlib/libc/stdio/vfprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c
index 251c3b02c..c96ffd09b 100644
--- a/newlib/libc/stdio/vfprintf.c
+++ b/newlib/libc/stdio/vfprintf.c
@@ -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)