Remove a warning about incorrect types, after discussion in channel it was decided to do it as &Process->Pcb instead of (PKPROCESS)Process.

svn path=/trunk/; revision=11633
This commit is contained in:
Aleksey Bragin 2004-11-12 18:42:25 +00:00
parent 2e3419423b
commit 0745f5a9ae

View file

@ -837,7 +837,7 @@ KdbSymFreeProcessSymbols(IN PEPROCESS Process)
CurrentProcess = PsGetCurrentProcess();
if (CurrentProcess != Process)
{
KeAttachProcess(Process);
KeAttachProcess(&Process->Pcb);
}
Peb = Process->Peb;
ASSERT(Peb);