Andrew Riedi : ole32: DPRINTF -> TRACE.

Alexandre Julliard julliard at winehq.org
Wed Dec 12 09:29:19 CST 2007


Module: wine
Branch: master
Commit: 19888da21d8fc27ea25f0c075eea783a56437a40
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=19888da21d8fc27ea25f0c075eea783a56437a40

Author: Andrew Riedi <andrewriedi at gmail.com>
Date:   Tue Dec 11 23:13:00 2007 -0800

ole32: DPRINTF -> TRACE.

---

 dlls/ole32/storage.c |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dlls/ole32/storage.c b/dlls/ole32/storage.c
index febdc12..7a711ae 100644
--- a/dlls/ole32/storage.c
+++ b/dlls/ole32/storage.c
@@ -716,24 +716,24 @@ STORAGE_dump_pps_entry(struct storage_pps_entry *stde) {
     WideCharToMultiByte( CP_ACP, 0, stde->pps_rawname, -1, name, sizeof(name), NULL, NULL);
 	if (!stde->pps_sizeofname)
 		return;
-	DPRINTF("name: %s\n",name);
-	DPRINTF("type: %d\n",stde->pps_type);
-	DPRINTF("prev pps: %d\n",stde->pps_prev);
-	DPRINTF("next pps: %d\n",stde->pps_next);
-	DPRINTF("dir pps: %d\n",stde->pps_dir);
-	DPRINTF("guid: %s\n",debugstr_guid(&(stde->pps_guid)));
+	TRACE("name: %s\n",name);
+	TRACE("type: %d\n",stde->pps_type);
+	TRACE("prev pps: %d\n",stde->pps_prev);
+	TRACE("next pps: %d\n",stde->pps_next);
+	TRACE("dir pps: %d\n",stde->pps_dir);
+	TRACE("guid: %s\n",debugstr_guid(&(stde->pps_guid)));
 	if (stde->pps_type !=2) {
 		time_t	t;
                 DWORD dw;
 		RtlTimeToSecondsSince1970((LARGE_INTEGER *)&(stde->pps_ft1),&dw);
                 t = dw;
-		DPRINTF("ts1: %s\n",ctime(&t));
+		TRACE("ts1: %s\n",ctime(&t));
 		RtlTimeToSecondsSince1970((LARGE_INTEGER *)&(stde->pps_ft2),&dw);
                 t = dw;
-		DPRINTF("ts2: %s\n",ctime(&t));
+		TRACE("ts2: %s\n",ctime(&t));
 	}
-	DPRINTF("startblock: %d\n",stde->pps_sb);
-	DPRINTF("size: %d\n",stde->pps_size);
+	TRACE("startblock: %d\n",stde->pps_sb);
+	TRACE("size: %d\n",stde->pps_size);
 }
 
 /******************************************************************************




More information about the wine-cvs mailing list