[0.4.7][SETUP] Silence some noisy DPRINT1
authorJoachim Henze <Joachim.Henze@reactos.org>
Sun, 20 Dec 2020 23:24:24 +0000 (00:24 +0100)
committerJoachim Henze <Joachim.Henze@reactos.org>
Sun, 20 Dec 2020 23:24:24 +0000 (00:24 +0100)
picked from 0.4.12-dev-260-g 0150bb964a411474d6cbd60ee45421bb6281deae

base/setup/usetup/inicache.c
base/setup/usetup/partlist.c

index 16f3e2e..88451bb 100644 (file)
@@ -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,
index b047a22..b95b095 100644 (file)
@@ -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;