From 0e80529be475cb5e88d89962aecca7f719bc3f5b Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Sun, 31 Oct 2004 17:05:50 +0000 Subject: [PATCH] - Fixed the definition of KeGetCurrentKPCR. svn path=/trunk/; revision=11508 --- reactos/w32api/include/ddk/winddk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/w32api/include/ddk/winddk.h b/reactos/w32api/include/ddk/winddk.h index f0aa62c86e3..35468ced18a 100644 --- a/reactos/w32api/include/ddk/winddk.h +++ b/reactos/w32api/include/ddk/winddk.h @@ -119,7 +119,7 @@ static __inline struct _KPCR * KeGetCurrentKPCR( { ULONG Value; - __asm__ __volatile__ ("movl %%fs:0x18, %0\n\t" + __asm__ __volatile__ ("movl %%fs:0x1C, %0\n\t" : "=r" (Value) : /* no inputs */ );