summaryrefslogtreecommitdiffstats
path: root/contrib/jemalloc/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/jemalloc/src/util.c')
-rw-r--r--contrib/jemalloc/src/util.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/contrib/jemalloc/src/util.c b/contrib/jemalloc/src/util.c
index f94799f..df1c5d5 100644
--- a/contrib/jemalloc/src/util.c
+++ b/contrib/jemalloc/src/util.c
@@ -393,7 +393,6 @@ malloc_vsnprintf(char *str, size_t size, const char *format, va_list ap)
case '\0': goto label_out;
case '%': {
bool alt_form = false;
- bool zero_pad = false;
bool left_justify = false;
bool plus_space = false;
bool plus_plus = false;
@@ -414,10 +413,6 @@ malloc_vsnprintf(char *str, size_t size, const char *format, va_list ap)
assert(alt_form == false);
alt_form = true;
break;
- case '0':
- assert(zero_pad == false);
- zero_pad = true;
- break;
case '-':
assert(left_justify == false);
left_justify = true;
OpenPOWER on IntegriCloud