diff options
author | 2023-12-06 07:58:49 +1100 | |
---|---|---|
committer | 2023-12-06 07:58:49 +1100 | |
commit | 79bef1e23049fdac25f1fefd132e0b6c7d2cc3a1 (patch) | |
tree | 643e9313fe86f583c4022c338677cbc12b761df7 /3rdparty/lzma/CPP/Windows/TimeUtils.cpp | |
parent | 512ccf0c7c9b4f08e41038b2ed2de220e140385b (diff) |
3rdparty/lzma: Updated to version 23.01.
Diffstat (limited to '3rdparty/lzma/CPP/Windows/TimeUtils.cpp')
-rw-r--r-- | 3rdparty/lzma/CPP/Windows/TimeUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/lzma/CPP/Windows/TimeUtils.cpp b/3rdparty/lzma/CPP/Windows/TimeUtils.cpp index 77d2c510293..e80ae13dcac 100644 --- a/3rdparty/lzma/CPP/Windows/TimeUtils.cpp +++ b/3rdparty/lzma/CPP/Windows/TimeUtils.cpp @@ -258,7 +258,7 @@ void GetCurUtc_FiTime(CFiTime &ft) throw() FiTime_Clear(ft); struct timeval now; - if (gettimeofday(&now, 0 ) == 0) + if (gettimeofday(&now, NULL) == 0) { ft.tv_sec = now.tv_sec; ft.tv_nsec = now.tv_usec * 1000; @@ -272,7 +272,7 @@ void GetCurUtcFileTime(FILETIME &ft) throw() { UInt64 v = 0; struct timeval now; - if (gettimeofday(&now, 0 ) == 0) + if (gettimeofday(&now, NULL) == 0) { v = ((UInt64)now.tv_sec + kUnixTimeOffset) * kNumTimeQuantumsInSecond + (UInt64)now.tv_usec * 10; |