diff options
author | Andreas Schwab <schwab@suse.de> | 2000-08-09 09:31:00 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2000-08-09 09:31:00 +0000 |
commit | 1000d1e5bb16b0997a650f84c0605e1d2dc5f878 (patch) | |
tree | 0e1375c2036835b91723117b25d64e791b2f8e1a /stdio-common/vfprintf.c | |
parent | bce0e5172b7dba29922f9af730c63229d96013e0 (diff) | |
download | glibc-1000d1e5bb16b0997a650f84c0605e1d2dc5f878.tar.gz glibc-1000d1e5bb16b0997a650f84c0605e1d2dc5f878.tar.xz glibc-1000d1e5bb16b0997a650f84c0605e1d2dc5f878.zip |
* stdio-common/vfprintf.c (vfprintf): Also set `is_long' if the
long long modifier is seen.
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r-- | stdio-common/vfprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index c67af60988..216ab291fa 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -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): |