mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Flipped increment/decrement. Noticed by encoded.
svn path=/trunk/; revision=29408
This commit is contained in:
@@ -36,12 +36,12 @@ KiUnexpectedInterrupt()
|
||||
|
||||
LONG NTAPI Exi386InterlockedDecrementLong(PLONG Addend)
|
||||
{
|
||||
return _InterlockedIncrement(Addend);
|
||||
return _InterlockedDecrement(Addend);
|
||||
}
|
||||
|
||||
LONG NTAPI Exi386InterlockedIncrementLong(PLONG Addend)
|
||||
{
|
||||
return _InterlockedDecrement(Addend);
|
||||
return _InterlockedIncrement(Addend);
|
||||
}
|
||||
|
||||
LONG NTAPI Exi386InterlockedExchangeUlong(PLONG Target, LONG Exch, LONG Compare)
|
||||
|
||||
Reference in New Issue
Block a user