From fb521a7a94d07b7fc66112c7bf8b8f3560a3a5f7 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Wed, 23 Aug 2017 01:17:09 +0530 Subject: [PATCH] Use hyphen within date --- nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nnn.c b/nnn.c index c8de442a..4c8ac943 100644 --- a/nnn.c +++ b/nnn.c @@ -1150,7 +1150,7 @@ printent_long(struct entry *ent, int sel) else ncols = COLS; - strftime(buf, 18, "%d %m %Y %H:%M", localtime(&ent->t)); + strftime(buf, 18, "%d-%m-%Y %H:%M", localtime(&ent->t)); if (sel) attron(A_REVERSE);