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
diff options
context:
space:
mode:
authorIgor Venevtsev <igor.venevtsev@gmail.com>2016-02-02 13:50:09 +0300
committerCorinna Vinschen <corinna@vinschen.de>2016-02-08 12:22:17 +0300
commitfa08ba8b23ce78b177b0883bd5d8a9b22ded4ed7 (patch)
treebc144e785c5f5a10d0422754b5a936d9be79e755
parentc2a27453c6e6e506e75795954b8dda12a225f9cd (diff)
* newlib/libc/stdio/nano-vfscanf.c: Fix '%F', '%G' and '%E' specifiers processing
-rw-r--r--newlib/libc/stdio/nano-vfscanf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/stdio/nano-vfscanf.c b/newlib/libc/stdio/nano-vfscanf.c
index 6a827567a..cc2fdf195 100644
--- a/newlib/libc/stdio/nano-vfscanf.c
+++ b/newlib/libc/stdio/nano-vfscanf.c
@@ -423,9 +423,9 @@ _DEFUN(__SVFSCANF_R, (rptr, fp, fmt0, ap),
return EOF;
#ifdef FLOATING_POINT
- case 'e':
- case 'f':
- case 'g':
+ case 'e': case 'E':
+ case 'f': case 'F':
+ case 'g': case 'G':
scan_data.code = CT_FLOAT;
break;
#endif