diff options
Diffstat (limited to 'lib/vasnprintf.c')
-rw-r--r-- | lib/vasnprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vasnprintf.c b/lib/vasnprintf.c index 567a67457..8be7ac480 100644 --- a/lib/vasnprintf.c +++ b/lib/vasnprintf.c @@ -469,7 +469,7 @@ VASNPRINTF (CHAR_T *resultbuf, size_t *lengthp, const CHAR_T *format, va_list ar if (tmp_length < precision) tmp_length = precision; /* Account for sign, decimal point etc. */ - tmp_length += 12 + tmp_length += 12; if (tmp_length < 12) goto out_of_memory; break; |