Hans Leidekker : msi: Remove redundant tracing.

Alexandre Julliard julliard at winehq.org
Thu May 12 13:57:52 CDT 2011


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

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu May 12 17:22:34 2011 +0200

msi: Remove redundant tracing.

---

 dlls/msi/action.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index 32cea4e..4a56485 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -2744,8 +2744,6 @@ VS_FIXEDFILEINFO *msi_get_disk_file_version( LPCWSTR filename )
     DWORD versize, handle;
     UINT sz;
 
-    TRACE("%s\n", debugstr_w(filename));
-
     versize = GetFileVersionInfoSizeW( filename, &handle );
     if (!versize)
         return NULL;
@@ -2799,13 +2797,12 @@ DWORD msi_get_disk_file_size( LPCWSTR filename )
     HANDLE file;
     DWORD size;
 
-    TRACE("%s\n", debugstr_w(filename));
-
     file = CreateFileW( filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL );
     if (file == INVALID_HANDLE_VALUE)
         return INVALID_FILE_SIZE;
 
     size = GetFileSize( file, NULL );
+    TRACE("size is %u\n", size);
     CloseHandle( file );
     return size;
 }




More information about the wine-cvs mailing list