summaryrefslogtreecommitdiff
path: root/lib/strftime.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strftime.c')
-rw-r--r--lib/strftime.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/strftime.c b/lib/strftime.c
index 9b205e48023..834f3a79f46 100644
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -143,11 +143,11 @@ extern char *tzname[];
enum pad_style
{
- ZERO_PAD, /* (default) Pad with 0 unless format says otherwise. */
- ALWAYS_ZERO_PAD, /* '0' Always pad with 0. */
- SIGN_PAD, /* '+' Always output a sign. */
- SPACE_PAD, /* '_' Pad with space. */
- NO_PAD /* '-' Do not pad. */
+ ZERO_PAD, /* (default) Pad with 0 unless format says otherwise. */
+ ALWAYS_ZERO_PAD, /* '0' Always pad with 0. */
+ SIGN_PAD, /* '+' Always output a sign. */
+ SPACE_PAD, /* '_' Pad with space. */
+ NO_PAD /* '-' Do not pad. */
};
#define TM_YEAR_BASE 1900