Fix cast type.
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Fri, 13 Nov 2015 20:01:53 +0000 (20:01 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Fri, 13 Nov 2015 20:01:53 +0000 (20:01 +0000)
svn path=/trunk/; revision=69882

reactos/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c

index 1c8682b..6d4edbe 100644 (file)
@@ -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;