projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1865f84
)
Disallow l flag after ll or L.
author
roland
<roland>
Wed, 24 Jan 1996 08:24:31 +0000
(08:24 +0000)
committer
roland
<roland>
Wed, 24 Jan 1996 08:24:31 +0000
(08:24 +0000)
stdio-common/vfscanf.c
patch
|
blob
|
history
diff --git
a/stdio-common/vfscanf.c
b/stdio-common/vfscanf.c
index
8a799ac
..
46f0658
100644
(file)
--- a/
stdio-common/vfscanf.c
+++ b/
stdio-common/vfscanf.c
@@
-313,7
+313,7
@@
__vfscanf (FILE *s, const char *format, va_list argptr)
flags |= SHORT;
break;
case 'l':
- if (flags &
SHORT
)
+ if (flags &
(SHORT|LONGDBL)
)
conv_error ();
else if (flags & LONG)
{