[NTOS:PS] Use NULL instead of 0 in ps/kill.c
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 12 Jul 2018 13:18:53 +0000 (15:18 +0200)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 5 Mar 2019 23:49:59 +0000 (00:49 +0100)
ntoskrnl/ps/kill.c

index 5681783..1cf6995 100644 (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);
 }