+2019-02-11 TAMUKI Shoichi <tamuki@linet.gr.jp>
+
+ * time/strftime_l.c: Fix a few whitespace arrangement inconsistencies.
+
2019-02-08 Joseph Myers <joseph@codesourcery.com>
* sysdeps/powerpc/bits/mathinline.h: Remove.
int pad = 0; /* Padding for number ('-', '_', or 0). */
int modifier; /* Field modifier ('E', 'O', or 0). */
int digits; /* Max digits for numeric format. */
- int number_value; /* Numeric value to be printed. */
+ int number_value; /* Numeric value to be printed. */
int negative_number; /* 1 if the number is negative. */
const CHAR_T *subfmt;
CHAR_T *bufp;
do
*--bufp = u % 10 + L_('0');
while ((u /= 10) != 0);
- }
+ }
do_number_sign_and_padding:
if (negative_number)
DO_NUMBER (2, tp->tm_sec);
case L_('s'): /* GNU extension. */
- {
+ {
struct tm ltm;
time_t t;