diff --git a/base/setup/lib/inicache.c b/base/setup/lib/inicache.c index de0d6f6d92f..752778acb2e 100644 --- a/base/setup/lib/inicache.c +++ b/base/setup/lib/inicache.c @@ -497,7 +497,7 @@ IniCacheLoadFromMemory( &SectionName, &SectionNameSize); - DPRINT1("[%.*s]\n", SectionNameSize, SectionName); + DPRINT("[%.*s]\n", SectionNameSize, SectionName); Section = IniCacheAddSection(*Cache, SectionName, @@ -526,7 +526,7 @@ IniCacheLoadFromMemory( &KeyValueSize, String); - DPRINT1("'%.*s' = '%.*s'\n", KeyNameSize, KeyName, KeyValueSize, KeyValue); + DPRINT("'%.*s' = '%.*s'\n", KeyNameSize, KeyName, KeyValueSize, KeyValue); Key = IniCacheAddKey(Section, KeyName, diff --git a/base/setup/lib/partlist.c b/base/setup/lib/partlist.c index 71fd77a0050..bdc6996a0fe 100644 --- a/base/setup/lib/partlist.c +++ b/base/setup/lib/partlist.c @@ -2561,7 +2561,7 @@ CheckActiveSystemPartition( return; } - DPRINT1("We are here (1)!\n"); + DPRINT("We are here (1)!\n"); List->SystemPartition = NULL; List->OriginalSystemPartition = NULL; @@ -2599,7 +2599,7 @@ CheckActiveSystemPartition( DPRINT1("NewDisk TRUE but first partition is used?\n"); } - DPRINT1("We are here (2)!\n"); + DPRINT("We are here (2)!\n"); /* * The disk is not new, check if any partition is initialized; @@ -2642,7 +2642,7 @@ CheckActiveSystemPartition( List->SystemPartition = NULL; List->OriginalSystemPartition = NULL; - DPRINT1("We are here (3)!\n"); + DPRINT("We are here (3)!\n"); /* The disk is not new, scan all partitions to find the (active) system partition */ ListEntry = DiskEntry->PrimaryPartListHead.Flink;