mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 08:20:27 +00:00
[NTOS:PS] Use NULL instead of 0 in ps/kill.c
This commit is contained in:
parent
33c6f6f4b5
commit
8a4c5763da
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ PspReapRoutine(IN PVOID Context)
|
||||||
|
|
||||||
/* Remove magic value, keep looping if it got changed */
|
/* Remove magic value, keep looping if it got changed */
|
||||||
} while (InterlockedCompareExchangePointer((PVOID*)&PspReaperListHead.Flink,
|
} while (InterlockedCompareExchangePointer((PVOID*)&PspReaperListHead.Flink,
|
||||||
0,
|
NULL,
|
||||||
(PVOID)1) != (PVOID)1);
|
(PVOID)1) != (PVOID)1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue