Commit 13fc9ce1 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntoskrnl.exe: Be more verbose in MmGetSystemRoutineAddress.

parent 3091f346
......@@ -1523,7 +1523,10 @@ PVOID WINAPI MmGetSystemRoutineAddress(PUNICODE_STRING SystemRoutineName)
RtlFreeAnsiString( &routineNameA );
}
TRACE( "%s -> %p\n", debugstr_us(SystemRoutineName), pFunc );
if (pFunc)
TRACE( "%s -> %p\n", debugstr_us(SystemRoutineName), pFunc );
else
FIXME( "%s not found\n", debugstr_us(SystemRoutineName) );
return pFunc;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment