Author: mnordell
Date: Sun Sep 2 15:33:32 2012
New Revision: 57219
URL:
http://svn.reactos.org/svn/reactos?rev=57219&view=rev
Log:
Comment-fix. Get/Set flip.
Modified:
trunk/reactos/ntoskrnl/ps/i386/psctx.c
Modified: trunk/reactos/ntoskrnl/ps/i386/psctx.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ps/i386/psctx.c?r…
==============================================================================
--- trunk/reactos/ntoskrnl/ps/i386/psctx.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ps/i386/psctx.c [iso-8859-1] Sun Sep 2 15:33:32 2012
@@ -75,12 +75,12 @@
/* Check if it's a set or get */
if (Apc->SystemArgument1)
{
- /* Get the Context */
+ /* Set the Context */
PspSetContext(TrapFrame, NULL, Context, Mode);
}
else
{
- /* Set the Context */
+ /* Get the Context */
PspGetContext(TrapFrame, NULL, Context);
}