From ca0cd5480e28ff450dc105b3346605f123fb28b3 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Sun, 14 Dec 2003 17:58:00 +0000 Subject: [PATCH] - Fixed some debug messages. - Removed ctype.h. svn path=/trunk/; revision=7043 --- reactos/ntoskrnl/cm/import.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/reactos/ntoskrnl/cm/import.c b/reactos/ntoskrnl/cm/import.c index 9ce6fb7f88c..7c13bd57389 100644 --- a/reactos/ntoskrnl/cm/import.c +++ b/reactos/ntoskrnl/cm/import.c @@ -1,4 +1,4 @@ -/* $Id: import.c,v 1.25 2003/11/27 00:48:11 gdalsnes Exp $ +/* $Id: import.c,v 1.26 2003/12/14 17:58:00 hbirr Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -12,7 +12,6 @@ #include #include -#include #include #define NDEBUG @@ -181,7 +180,7 @@ CmImportSystemHive(PCHAR ChunkBase, /* Import the binary system hive (non-volatile, offset-based, permanent) */ if (!CmImportBinaryHive (ChunkBase, ChunkSize, 0, &RegistryHive)) { - DPRINT1 ("CmiImportBinaryHive() failed\n", Status); + DPRINT1 ("CmiImportBinaryHive() failed\n"); return FALSE; } @@ -333,7 +332,7 @@ CmImportHardwareHive(PCHAR ChunkBase, /* Import the binary system hive (volatile, offset-based, permanent) */ if (!CmImportBinaryHive (ChunkBase, ChunkSize, HIVE_NO_FILE, &RegistryHive)) { - DPRINT1 ("CmiImportBinaryHive() failed\n", Status); + DPRINT1 ("CmiImportBinaryHive() failed\n"); return FALSE; }