Remove console debug output
Modified: trunk/reactos/subsys/system/regedit/treeview.c

Modified: trunk/reactos/subsys/system/regedit/treeview.c
--- trunk/reactos/subsys/system/regedit/treeview.c	2005-08-08 21:29:25 UTC (rev 17219)
+++ trunk/reactos/subsys/system/regedit/treeview.c	2005-08-08 22:14:04 UTC (rev 17220)
@@ -100,7 +100,7 @@
     if (!hItem) hItem = TreeView_GetSelection(hwndTV);
     if (!hItem) return NULL;
     if (!get_item_path(hwndTV, hItem, phRootKey, &pathBuffer, &pathLen, &maxLen)) return NULL;
-    printf("hRoot=%p, keyPath='%s'\n", *phRootKey, pathBuffer);
+    /*printf("hRoot=%p, keyPath='%s'\n", *phRootKey, pathBuffer);*/
     return pathBuffer;
 }
 
@@ -242,7 +242,7 @@
 	    RegCloseKey(hKey);
 	}
 	if (errCode != ERROR_SUCCESS) dwSubCount = 0;
-	printf("dwSubCount=%ld, Name=%s\n", dwSubCount, Name);
+	/*printf("dwSubCount=%ld, Name=%s\n", dwSubCount, Name);*/
         AddEntryToTree(hwndTV, pnmtv->itemNew.hItem, Name, NULL, dwSubCount, TVI_FIRST);
     }