mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fixed Ki386WriteFsByte.
svn path=/trunk/; revision=18751
This commit is contained in:
parent
ab7b402799
commit
a699e1ac44
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ static inline BYTE Ki386ReadFsByte(ULONG offset)
|
|||
|
||||
static inline VOID Ki386WriteFsByte(ULONG offset, BYTE value)
|
||||
{
|
||||
__asm__ __volatile__("movb %0,%%fs:(%1)"::"r" (value), "r" (offset));
|
||||
__asm__ __volatile__("movb %0,%%fs:(%1)"::"q" (value), "r" (offset));
|
||||
}
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
|
|
Loading…
Reference in a new issue