From 38b63156fa2c902141b13c04c2b0706f7f5e38d4 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Tue, 13 Sep 2005 19:34:48 +0000 Subject: [PATCH] Sorry for the debug messages. svn path=/trunk/; revision=17839 --- reactos/lib/ntdll/ldr/startup.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/reactos/lib/ntdll/ldr/startup.c b/reactos/lib/ntdll/ldr/startup.c index 02347bc4563..c96e3bae870 100644 --- a/reactos/lib/ntdll/ldr/startup.c +++ b/reactos/lib/ntdll/ldr/startup.c @@ -256,13 +256,13 @@ LdrpInit(PCONTEXT Context, SYSTEM_BASIC_INFORMATION SystemInformation; NTSTATUS Status; - DPRINT1("LdrpInit()\n"); + DPRINT("LdrpInit()\n"); if (NtCurrentPeb()->Ldr == NULL || NtCurrentPeb()->Ldr->Initialized == FALSE) { Peb = (PPEB)(PEB_BASE); - DPRINT1("Peb %x\n", Peb); + DPRINT("Peb %x\n", Peb); ImageBase = Peb->ImageBaseAddress; - DPRINT1("ImageBase %x\n", ImageBase); + DPRINT("ImageBase %x\n", ImageBase); if (ImageBase <= (PVOID)0x1000) { DPRINT("ImageBase is null\n"); @@ -271,7 +271,7 @@ LdrpInit(PCONTEXT Context, /* If MZ header exists */ PEDosHeader = (PIMAGE_DOS_HEADER) ImageBase; - DPRINT1("PEDosHeader %x\n", PEDosHeader); + DPRINT("PEDosHeader %x\n", PEDosHeader); if (PEDosHeader->e_magic != IMAGE_DOS_SIGNATURE || PEDosHeader->e_lfanew == 0L || @@ -294,12 +294,12 @@ LdrpInit(PCONTEXT Context, NTHeaders = (PIMAGE_NT_HEADERS)((ULONG_PTR)ImageBase + PEDosHeader->e_lfanew); /* Get number of processors */ - DPRINT1("Here\n"); + DPRINT("Here\n"); Status = ZwQuerySystemInformation(SystemBasicInformation, &SystemInformation, sizeof(SYSTEM_BASIC_INFORMATION), NULL); - DPRINT1("Here2\n"); + DPRINT("Here2\n"); if (!NT_SUCCESS(Status)) { ZwTerminateProcess(NtCurrentProcess(), Status);