diff options
Diffstat (limited to 'coreutils/date.c')
-rw-r--r-- | coreutils/date.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index c0faf04af..881dcc429 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -336,7 +336,7 @@ int date_main(int argc UNUSED_PARAM, char **argv) | |||
336 | } | 336 | } |
337 | #if ENABLE_PLATFORM_MINGW32 | 337 | #if ENABLE_PLATFORM_MINGW32 |
338 | if (strstr(fmt_dt2str, "%e")) | 338 | if (strstr(fmt_dt2str, "%e")) |
339 | bb_error_msg_and_die("%e is not supported by Windows strftime"); | 339 | bb_error_msg_and_die("%%e is not supported by Windows strftime"); |
340 | #endif | 340 | #endif |
341 | /* Generate output string */ | 341 | /* Generate output string */ |
342 | strftime(date_buf, sizeof(date_buf), fmt_dt2str, &tm_time); | 342 | strftime(date_buf, sizeof(date_buf), fmt_dt2str, &tm_time); |