Fix cast type.

svn path=/trunk/; revision=69882
This commit is contained in:
Hermès Bélusca-Maïto
2015-11-13 20:01:53 +00:00
parent 8f3b6120b2
commit 4a866698e3
@@ -172,7 +172,7 @@ GuiConsoleInputThread(PVOID Param)
PCSR_PROCESS CsrProcess;
DPRINT1("CsrConnectToUser being called; 0x%p [0x%x, 0x%x]...\n",
CurrThread, (CurrThread ? CurrThread->ClientId.UniqueProcess : (ULONG_PTR)-1), (CurrThread ? CurrThread->ClientId.UniqueThread : (ULONG_PTR)-1));
CurrThread, (CurrThread ? CurrThread->ClientId.UniqueProcess : (HANDLE)-1), (CurrThread ? CurrThread->ClientId.UniqueThread : (HANDLE)-1));
pcsrt = CsrConnectToUser();
if (pcsrt == NULL) goto Quit;