* Properly fix a debug print specifier. Spotted by Aleksey Bragin.

svn path=/trunk/; revision=61929
This commit is contained in:
Amine Khaldi 2014-02-02 20:17:37 +00:00
parent 938af422cf
commit e956e2e2aa

View file

@ -1320,7 +1320,7 @@ SkipCheck:
ImageBase = (ULONG_PTR)NtHeaders->OptionalHeader.ImageBase;
ImageEnd = ImageBase + ViewSize;
DPRINT1("LDR: LdrpMapDll Relocating Image Name %ws (%lu -> %p)\n", DllName, ImageBase, ViewBase);
DPRINT1("LDR: LdrpMapDll Relocating Image Name %ws (%p -> %p)\n", DllName, (PVOID)ImageBase, ViewBase);
/* Scan all the modules */
ListHead = &Peb->Ldr->InLoadOrderModuleList;