summaryrefslogtreecommitdiff
path: root/deps/jemalloc/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/src/util.c')
-rw-r--r--deps/jemalloc/src/util.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/deps/jemalloc/src/util.c b/deps/jemalloc/src/util.c
index 9b73c3ec0..b3a011436 100644
--- a/deps/jemalloc/src/util.c
+++ b/deps/jemalloc/src/util.c
@@ -377,7 +377,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;
@@ -398,10 +397,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;