diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-03-11 21:28:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-03-11 21:28:56 +0000 |
commit | 1baa39591033ec9b6d22f49424dce4b9b5ad38ba (patch) | |
tree | eefb8ef429a8389786dad37b71ede1e645aa862c | |
parent | d6ecea7114d63b1410e6f32ceb168283a06c5df5 (diff) | |
download | glibc-1baa39591033ec9b6d22f49424dce4b9b5ad38ba.zip glibc-1baa39591033ec9b6d22f49424dce4b9b5ad38ba.tar.gz glibc-1baa39591033ec9b6d22f49424dce4b9b5ad38ba.tar.bz2 |
(__printf_fp): Correct check for %F format when determining type of format.
-rw-r--r-- | stdio-common/printf_fp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c index 66a6084..746c5aa 100644 --- a/stdio-common/printf_fp.c +++ b/stdio-common/printf_fp.c @@ -806,7 +806,7 @@ __printf_fp (FILE *fp, dig_max = INT_MAX; /* Unlimited. */ significant = 1; /* Does not matter here. */ } - else if (info->spec == 'f') + else if (_tolower (info->spec) == 'f') { type = 'f'; fracdig_min = fracdig_max = info->prec < 0 ? 6 : info->prec; |