diff options
| author | 2018-01-06 10:01:54 +0530 | |
|---|---|---|
| committer | 2018-01-06 10:01:54 +0530 | |
| commit | 542fd2f6e881cf9012b39f6b39d1a8da472dcc1a (patch) | |
| tree | c161e36e01191d1b7f8bc4cc198b529db70f3483 | |
| parent | d69365ff3e58ac08d0d5e6900ee503beb2ec8cd6 (diff) | |
| download | nnn-542fd2f6e881cf9012b39f6b39d1a8da472dcc1a.tar.gz | |
Swap weekday and month
| -rw-r--r-- | nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -274,7 +274,7 @@ static const char *STR_ATROOT = "You are at /"; static const char *STR_NOHOME = "HOME not set"; static const char *STR_INPUT = "No traversal delimiter allowed"; static const char *STR_INVBM = "Invalid bookmark"; -static const char *STR_DATE = "%a %b %d %Y %T %z"; +static const char *STR_DATE = "%a %d %b %Y %T %z"; /* For use in functions which are isolated and don't return the buffer */ static char g_buf[MAX_CMD_LEN] __attribute__ ((aligned)); |