mirror of
https://github.com/reactos/reactos.git
synced 2025-04-17 19:27:00 +00:00
[NTDLL]
* Properly fix a debug print specifier. Spotted by Aleksey Bragin. svn path=/trunk/; revision=61929
This commit is contained in:
parent
938af422cf
commit
e956e2e2aa
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue