Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-11-07 19:01:17 +0300
committerJeff Johnston <jjohnstn@redhat.com>2003-11-07 19:01:17 +0300
commit2985521f84ccc8bf626482d80e4a8c292d5413b9 (patch)
tree67b2fdcfee1ada500af1ede570e776469f967e8d /newlib
parentdcad6a899acf825c642f209537cb6e9b16de03a6 (diff)
2003-11-07 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdio/vfprintf.c (_VFPRINTF_R): Fix typos that should be referring to _NO_LONGLONG macro.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/stdio/vfprintf.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 08e5ba92d..ac23875eb 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2003-11-07 Jeff Johnston <jjohnstn@redhat.com>
+
+ * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix typos that should be
+ referring to _NO_LONGLONG macro.
+
2003-11-06 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/linuxthreads/td_init.c: Replace function name
diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c
index c722a218e..251c3b02c 100644
--- a/newlib/libc/stdio/vfprintf.c
+++ b/newlib/libc/stdio/vfprintf.c
@@ -291,7 +291,7 @@ static int exponent _PARAMS((char *, int, int));
#endif /* FLOATING_POINT */
-#ifndef _NO_LONG_LONG
+#ifndef _NO_LONGLONG
#define quad_t long long
#define u_quad_t unsigned long long
#else
@@ -1536,7 +1536,7 @@ get_arg (struct _reent *data, int n, char *fmt, va_list *ap,
spec_type = LONG_INT;
else if (flags & SHORTINT)
spec_type = SHORT_INT;
-#ifndef _NO_LONG_LONG
+#ifndef _NO_LONGLONG
else if (flags & QUADINT)
spec_type = QUAD_INT;
#endif