- Remove unneeded ";"

svn path=/trunk/; revision=53540
This commit is contained in:
Dmitry Chapyshev 2011-09-03 04:55:54 +00:00
parent 3fdf7a4109
commit 108b181a84

View file

@ -1195,7 +1195,7 @@ RtlpDphFreeDelayedBlocksFromHeap(PDPH_HEAP_ROOT DphRoot,
/* Traverse the list */ /* Traverse the list */
Current = RtlpDphDelayedFreeQueue.Flink; Current = RtlpDphDelayedFreeQueue.Flink;
while (Current != &RtlpDphDelayedFreeQueue); while (Current != &RtlpDphDelayedFreeQueue)
{ {
/* Get the next entry pointer */ /* Get the next entry pointer */
Next = Current->Flink; Next = Current->Flink;