- Remove superfluous VOID casts from 42314.

svn path=/trunk/; revision=43196
This commit is contained in:
Stefan Ginsberg 2009-09-27 20:34:40 +00:00
parent a857ca2b6a
commit e97d4af887

View file

@ -381,7 +381,7 @@ ExFreeArmPoolWithTag(IN PVOID P,
// //
if (PAGE_ALIGN(P) == P) if (PAGE_ALIGN(P) == P)
{ {
(VOID)MiFreePoolPages(P); MiFreePoolPages(P);
return; return;
} }
@ -501,7 +501,7 @@ ExFreeArmPoolWithTag(IN PVOID P,
// In this case, release the nonpaged pool lock, and free the page // In this case, release the nonpaged pool lock, and free the page
// //
KeReleaseQueuedSpinLock(LockQueueNonPagedPoolLock, OldIrql); KeReleaseQueuedSpinLock(LockQueueNonPagedPoolLock, OldIrql);
(VOID)MiFreePoolPages(Entry); MiFreePoolPages(Entry);
return; return;
} }