From b469ec3ab405964671c9117746f3f49a2519efc4 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Sat, 30 May 2020 17:18:45 -0400 Subject: [PATCH] Fixed misindentation --- sortdir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortdir.c b/sortdir.c index 11c7009..86ef3c4 100644 --- a/sortdir.c +++ b/sortdir.c @@ -638,7 +638,7 @@ void readdatetime(uchar time[4], struct datetime *dt) { dt->year = t & 0x0fff; dt->month = ((t & 0xf000) >> 12) - 1; dt->day = (d & 0xf800) >> 11; - dt->hour = (d & 0x07c0) >> 6; + dt->hour = (d & 0x07c0) >> 6; dt->minute = d & 0x003f; dt->ispd25format = 1; }