Swap weekday and month

This commit is contained in:
Arun Prakash Jana 2018-01-06 10:01:54 +05:30
parent d69365ff3e
commit 542fd2f6e8
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

2
nnn.c
View File

@ -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));