diff options
Diffstat (limited to 'zen/int64.h')
-rw-r--r-- | zen/int64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/int64.h b/zen/int64.h index 7d03f35d..6901ebeb 100644 --- a/zen/int64.h +++ b/zen/int64.h @@ -219,7 +219,7 @@ Int64 toTimeT(const FILETIME& ft) } inline -FILETIME tofiletime(const Int64& utcTime) +FILETIME toFileTime(const Int64& utcTime) { const UInt64 fileTimeLong = to<UInt64>(utcTime + Int64(3054539008UL, 2)) * 10000000U; const FILETIME output = { fileTimeLong.getLo(), fileTimeLong.getHi() }; |