quartz/tests: Fix static link to GetTickCount64().

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2019-03-14 12:12:18 -05:00 committed by Alexandre Julliard
parent 7857074700
commit 3befa57d6a
1 changed files with 1 additions and 1 deletions

View File

@ -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);