Author: fireball
Date: Tue Jul  1 05:40:20 2008
New Revision: 34231
URL: 
http://svn.reactos.org/svn/reactos?rev=34231&view=rev
Log:
- Fix code comments, in addition to 34230.
See issue #3426 for more details.
Modified:
    trunk/reactos/ntoskrnl/ke/apc.c
Modified: trunk/reactos/ntoskrnl/ke/apc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/apc.c?rev=3423…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/apc.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/apc.c [iso-8859-1] Tue Jul  1 05:40:20 2008
@@ -137,7 +137,7 @@
     }
     else
     {
-        /* Special APC, find the first Normal APC in the list */
+        /* Special APC, find the last one in the list */
         ListHead = &ApcState->ApcListHead[ApcMode];
         NextEntry = ListHead->Blink;
         while (NextEntry != ListHead)
@@ -148,7 +148,7 @@
             /* Is this a No-Normal APC? If so, break */
             if (!QueuedApc->NormalRoutine) break;
-            /* Move to the next APC in the Queue */
+            /* Move to the previous APC in the Queue */
             NextEntry = NextEntry->Blink;
         }