[SPOOLSS] Fix prototype of BuildOtherNamesFromMachineName

This commit is contained in:
Timo Kreuzer 2022-08-28 18:18:58 +02:00
parent 561b71b644
commit 51a09e7358

View file

@ -253,12 +253,12 @@ SpoolerInit(VOID)
}
BOOL WINAPI
BuildOtherNamesFromMachineName(LPVOID * ptr1, LPVOID * ptr2)
BuildOtherNamesFromMachineName(LPVOID * ptr1, ULONG * ptr2)
{
FIXME("(%p, %p) stub\n", ptr1, ptr2);
*ptr1 = NULL;
*ptr2 = NULL;
*ptr2 = 0;
return FALSE;
}