[NTOS:PS] Use NULL instead of 0 in ps/kill.c

This commit is contained in:
Timo Kreuzer 2018-07-12 15:18:53 +02:00
parent 33c6f6f4b5
commit 8a4c5763da

View file

@ -201,7 +201,7 @@ PspReapRoutine(IN PVOID Context)
/* Remove magic value, keep looping if it got changed */
} while (InterlockedCompareExchangePointer((PVOID*)&PspReaperListHead.Flink,
0,
NULL,
(PVOID)1) != (PVOID)1);
}