summaryrefslogtreecommitdiff
path: root/printf
diff options
context:
space:
mode:
authorMarco Bodrato <bodrato@mail.dm.unipi.it>2014-01-23 18:34:01 +0100
committerMarco Bodrato <bodrato@mail.dm.unipi.it>2014-01-23 18:34:01 +0100
commitdded44999af3e8f95b804df741996a455ce235cc (patch)
treef16e38b2ab86a1e6cdb9e8144c7c84c009b72076 /printf
parent4f713b3d160e9fae550e74ee5e69034756928057 (diff)
downloadgmp-dded44999af3e8f95b804df741996a455ce235cc.tar.gz
printf/repl-vsnprintf.c: Feed case 'z' in switch (type) with case 'z' in switch (fchar)
Diffstat (limited to 'printf')
-rw-r--r--printf/repl-vsnprintf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/printf/repl-vsnprintf.c b/printf/repl-vsnprintf.c
index 9d134c3a6..158db269b 100644
--- a/printf/repl-vsnprintf.c
+++ b/printf/repl-vsnprintf.c
@@ -261,6 +261,7 @@ __gmp_replacement_vsnprintf (char *buf, size_t buf_size,
case 'L': /* long long or long double */
case 'q': /* quad_t */
case 't': /* ptrdiff_t */
+ case 'z': /* size_t */
set_type:
type = fchar;
break;