[PATCH v3 1/4] quartz/tests: Fix static link to GetTickCount64().

Zebediah Figura z.figura12 at gmail.com
Thu Mar 14 12:12:18 CDT 2019


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/quartz/tests/systemclock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/quartz/tests/systemclock.c b/dlls/quartz/tests/systemclock.c
index 258e19808f..9dae754b58 100644
--- a/dlls/quartz/tests/systemclock.c
+++ b/dlls/quartz/tests/systemclock.c
@@ -74,7 +74,7 @@ static void test_get_time(void)
 
     hr = IReferenceClock_GetTime(clock, &time1);
     if (pGetTickCount64)
-        time2 = GetTickCount64() * 10000;
+        time2 = pGetTickCount64() * 10000;
     else
         time2 = GetTickCount() * 10000;
     ok(hr == S_OK, "Got hr %#x.\n", hr);
-- 
2.20.1




More information about the wine-devel mailing list