mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
[NTOS]
- Also fix misguided return type aka fix build svn path=/trunk/; revision=60741
This commit is contained in:
@@ -297,13 +297,16 @@ MiDbgDumpAddressSpace(VOID)
|
||||
"Non Paged Pool Expansion PTE Space");
|
||||
}
|
||||
|
||||
NTSTATUS NTAPI
|
||||
MmMpwThreadMain(PVOID Ignored)
|
||||
VOID
|
||||
NTAPI
|
||||
MmMpwThreadMain(PVOID Parameter)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
ULONG PagesWritten;
|
||||
LARGE_INTEGER Timeout;
|
||||
|
||||
UNREFERENCED_PARAMETER(Parameter);
|
||||
|
||||
Timeout.QuadPart = -50000000;
|
||||
|
||||
for(;;)
|
||||
@@ -317,7 +320,7 @@ MmMpwThreadMain(PVOID Ignored)
|
||||
{
|
||||
DbgPrint("MpwThread: Wait failed\n");
|
||||
KeBugCheck(MEMORY_MANAGEMENT);
|
||||
return(STATUS_UNSUCCESSFUL);
|
||||
return;
|
||||
}
|
||||
|
||||
PagesWritten = 0;
|
||||
|
||||
Reference in New Issue
Block a user