From d1cd8f60abb23d08e3063657024d1befc3d38dca Mon Sep 17 00:00:00 2001 From: Mike Nordell Date: Sun, 2 Sep 2012 15:33:32 +0000 Subject: [PATCH] Comment-fix. Get/Set flip. svn path=/trunk/; revision=57219 --- reactos/ntoskrnl/ps/i386/psctx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ps/i386/psctx.c b/reactos/ntoskrnl/ps/i386/psctx.c index 207334e5f43..9c113bd8faa 100644 --- a/reactos/ntoskrnl/ps/i386/psctx.c +++ b/reactos/ntoskrnl/ps/i386/psctx.c @@ -75,12 +75,12 @@ PspGetOrSetContextKernelRoutine(IN PKAPC Apc, /* 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); }