From a4f88cc27187b419d6bfe342103b4a6dfdaececa Mon Sep 17 00:00:00 2001 From: Joachim Henze Date: Mon, 21 Dec 2020 00:23:19 +0100 Subject: [PATCH] [0.4.9][SETUP] Silence some noisy DPRINT1 picked from 0.4.12-dev-260-g 0150bb964a411474d6cbd60ee45421bb6281deae --- base/setup/usetup/inicache.c | 4 ++-- base/setup/usetup/partlist.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base/setup/usetup/inicache.c b/base/setup/usetup/inicache.c index 16f3e2e4e0b..88451bb1578 100644 --- a/base/setup/usetup/inicache.c +++ b/base/setup/usetup/inicache.c @@ -600,7 +600,7 @@ IniCacheLoad( &SectionName, &SectionNameSize); - DPRINT1("[%.*s]\n", SectionNameSize, SectionName); + DPRINT("[%.*s]\n", SectionNameSize, SectionName); Section = IniCacheAddSection(*Cache, SectionName, @@ -629,7 +629,7 @@ IniCacheLoad( &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/usetup/partlist.c b/base/setup/usetup/partlist.c index b047a227b59..b95b0957764 100644 --- a/base/setup/usetup/partlist.c +++ b/base/setup/usetup/partlist.c @@ -3185,7 +3185,7 @@ CheckActiveSystemPartition( return; } - DPRINT1("We are here (1)!\n"); + DPRINT("We are here (1)!\n"); List->SystemDisk = NULL; List->SystemPartition = NULL; @@ -3227,7 +3227,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; @@ -3274,7 +3274,7 @@ CheckActiveSystemPartition( List->OriginalSystemDisk = 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;