[NTDLL:LDR]

- Fix a DPRINT

svn path=/trunk/; revision=63759
This commit is contained in:
Thomas Faber 2014-07-29 10:29:22 +00:00
parent cea117cf74
commit f5ce4355d6

View file

@ -2334,7 +2334,7 @@ LdrpGetProcedureAddress(IN PVOID BaseAddress,
if (!ExportDir)
{
DPRINT1("Image %wZ has no exports, but were trying to get procedure %Z. BaseAddress asked 0x%p, got entry BA 0x%p\n",
&LdrEntry->BaseDllName, &Name, BaseAddress, LdrEntry->DllBase);
&LdrEntry->BaseDllName, Name, BaseAddress, LdrEntry->DllBase);
Status = STATUS_PROCEDURE_NOT_FOUND;
_SEH2_YIELD(goto Quickie;)
}