mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
fix gcc 4.1.2 build patch by Coviti
See issue #1897 for more details. svn path=/trunk/; revision=25083
This commit is contained in:
parent
66bf6c2606
commit
7ead042aa6
1 changed files with 2 additions and 2 deletions
|
@ -1294,7 +1294,7 @@ ThreadScan:
|
|||
if (DebugEvent->Flags & 0x10)
|
||||
{
|
||||
/* Set busy flag */
|
||||
InterlockedOr(&DebugEvent->Flags, 0x100);
|
||||
InterlockedOr((PLONG)&DebugEvent->Flags, 0x100);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1313,7 +1313,7 @@ ThreadScan:
|
|||
DebugEvent->BackoutThread = NULL;
|
||||
|
||||
/* Set flag */
|
||||
InterlockedOr(&DebugEvent->Flags, 0x80);
|
||||
InterlockedOr((PLONG)&DebugEvent->Flags, 0x80);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue