[SETUPAPI] Use long type also in SetupGetInfDriverStoreLocationA

Addendum for the previous commit.
This commit is contained in:
Hermès Bélusca-Maïto 2023-09-16 21:45:58 +02:00
parent 982d65b93c
commit da53374174
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -753,7 +753,7 @@ BOOL WINAPI SetupGetInfDriverStoreLocationA(
PCSTR LocaleName, PSTR ReturnBuffer, DWORD ReturnBufferSize,
PDWORD RequiredSize)
{
FIXME("stub: %s %p %s %p %u %p\n", debugstr_a(FileName), AlternativePlatformInfo, debugstr_a(LocaleName), ReturnBuffer, ReturnBufferSize, RequiredSize);
FIXME("stub: %s %p %s %p %lu %p\n", debugstr_a(FileName), AlternativePlatformInfo, debugstr_a(LocaleName), ReturnBuffer, ReturnBufferSize, RequiredSize);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;