Module: wine Branch: master Commit: 3befa57d6a2410746596f414abad35a659b92950 URL: https://source.winehq.org/git/wine.git/?a=commit;h=3befa57d6a2410746596f414a... Author: Zebediah Figura <z.figura12(a)gmail.com> Date: Thu Mar 14 12:12:18 2019 -0500 quartz/tests: Fix static link to GetTickCount64(). Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- 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 258e198..9dae754 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);