summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorTamar Christina <tamar@zhox.com>2019-11-02 21:41:10 +0000
committerBen Gamari <ben@smart-cactus.org>2020-07-15 16:41:02 -0400
commit84ea3d1492127442e2d416f1f576a5921186ada4 (patch)
treed923eac1c89f82a2d276784182f1cd9b2f8ed835 /utils
parent8da15a09955926c4617d3468b84b3f3ca414d48a (diff)
downloadhaskell-84ea3d1492127442e2d416f1f576a5921186ada4.tar.gz
winio: Relaxing some constraints in io-manager.
Diffstat (limited to 'utils')
-rw-r--r--utils/fs/fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fs/fs.c b/utils/fs/fs.c
index 51f45eb2d0..ebed2ca0fc 100644
--- a/utils/fs/fs.c
+++ b/utils/fs/fs.c
@@ -412,7 +412,7 @@ int FS(_stat64) (const char *path, struct __stat64 *buffer)
static __time64_t ftToPosix(FILETIME ft)
{
- // takes the last modified date
+ /* takes the last modified date. */
LARGE_INTEGER date, adjust;
date.HighPart = ft.dwHighDateTime;
date.LowPart = ft.dwLowDateTime;