diff options
-rw-r--r-- | lib/strftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strftime.c b/lib/strftime.c index fb7354efd..b68b4cf5a 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -909,10 +909,10 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format, } while (u_number_value != 0); + do_number_sign_and_padding: if (digits < width) digits = width; - do_number_sign_and_padding: if (negative_number) *--bufp = L_('-'); |