]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* stdio-common/vfprintf.c (vfprintf): Also set `is_long' if the
authorAndreas Schwab <schwab@suse.de>
Wed, 9 Aug 2000 09:31:00 +0000 (09:31 +0000)
committerAndreas Schwab <schwab@suse.de>
Wed, 9 Aug 2000 09:31:00 +0000 (09:31 +0000)
long long modifier is seen.

ChangeLog
stdio-common/vfprintf.c

index f12214d527da217c74e928e69b52a30ee3f4417e..7d8343fcd87ea09370b31c7c2b5fe64601d66b33 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-08-09  Andreas Schwab  <schwab@suse.de>
 
+       * stdio-common/vfprintf.c (vfprintf): Also set `is_long' if the
+       long long modifier is seen.
+
        * elf/nodelete.c (do_test): Remove reference to undefined member
        sa_restorer.
        * rt/tst-aio4.c (do_test): Likewise.
index c67af609882939f88a3a795d11b24bdf52ecdc36..216ab291fa34537f03cee5944dc97eb481aa2d46 100644 (file)
@@ -1471,6 +1471,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
         allowed to follow.  */
     LABEL (mod_longlong):
       is_long_double = 1;
+      is_long = 1;
       JUMP (*++f, step4_jumps);
 
     LABEL (mod_size_t):