[NTDLL:LDR]
authorThomas Faber <thomas.faber@reactos.org>
Tue, 29 Jul 2014 10:29:22 +0000 (10:29 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Tue, 29 Jul 2014 10:29:22 +0000 (10:29 +0000)
- Fix a DPRINT

svn path=/trunk/; revision=63759

reactos/dll/ntdll/ldr/ldrutils.c

index 201a48d..40a5f30 100644 (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;)
         }