https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4b82c191969bd9d34a0fc…
commit 4b82c191969bd9d34a0fc116e7e584b161941b9b
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Sun Nov 3 16:59:11 2019 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Sun Nov 3 17:00:57 2019 +0100
[DNSAPI] Fix MSVC build.
---
dll/win32/dnsapi/dnsapi/query.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/win32/dnsapi/dnsapi/query.c b/dll/win32/dnsapi/dnsapi/query.c
index f7de6ab96c8..bc89c8d8ad8 100644
--- a/dll/win32/dnsapi/dnsapi/query.c
+++ b/dll/win32/dnsapi/dnsapi/query.c
@@ -1103,5 +1103,5 @@ GetCurrentTimeInSeconds(VOID)
GetSystemTimeAsFileTime(&Time);
memcpy(&lTime, &Time, sizeof(lTime));
lTime.QuadPart -= lAdj.QuadPart;
- return (DWORD)(lTime.QuadPart/10000000LLU);
+ return (DWORD)(lTime.QuadPart/10000000ULL);
}