From 830c4ee4a00688258929fc8a160b31ae66a136a4 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Mon, 14 Dec 2015 23:20:10 +0000 Subject: [PATCH] [NTOS] - Fix copypasta in the comments svn path=/trunk/; revision=70348 --- reactos/ntoskrnl/ps/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ps/thread.c b/reactos/ntoskrnl/ps/thread.c index a7d578d037c..8b0099823bf 100644 --- a/reactos/ntoskrnl/ps/thread.c +++ b/reactos/ntoskrnl/ps/thread.c @@ -654,10 +654,10 @@ PsLookupThreadByThreadId(IN HANDLE ThreadId, CidEntry = ExMapHandleToPointer(PspCidTable, ThreadId); if (CidEntry) { - /* Get the Process */ + /* Get the Thread */ FoundThread = CidEntry->Object; - /* Make sure it's really a process */ + /* Make sure it's really a thread */ if (FoundThread->Tcb.Header.Type == ThreadObject) { /* Safe Reference and return it */