From a94ee6f99f6fd5473146b716346488696556761f Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Tue, 11 Dec 2007 18:48:52 +0000 Subject: [PATCH] - A message about LdrGetExportByName() is not critical, so downgrade it from DPRINT1 to DPRINT. svn path=/trunk/; revision=31159 --- reactos/dll/ntdll/ldr/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/ntdll/ldr/utils.c b/reactos/dll/ntdll/ldr/utils.c index 2f67bda3d50..862115d09db 100644 --- a/reactos/dll/ntdll/ldr/utils.c +++ b/reactos/dll/ntdll/ldr/utils.c @@ -1195,7 +1195,7 @@ LdrGetExportByName(PVOID BaseAddress, } } - DPRINT1("LdrGetExportByName(): failed to find %s\n",SymbolName); + DPRINT("LdrGetExportByName(): failed to find %s\n",SymbolName); return (PVOID)NULL; }