msi: Remove unneeded cast

Andrew Talbot andrew.talbot at talbotville.com
Fri Dec 21 11:05:33 CST 2007


Changelog:
    msi: Remove unneeded cast.

diff --git a/dlls/msi/format.c b/dlls/msi/format.c
index 4cc5ed4..f56702d 100644
--- a/dlls/msi/format.c
+++ b/dlls/msi/format.c
@@ -585,7 +585,7 @@ static DWORD deformat_string_internal(MSIPACKAGE *package, LPCWSTR ptr,
         if (value!=NULL)
         {
             LPBYTE nd2;
-            TRACE("value %s, chunk %i size %i\n",debugstr_w((LPWSTR)value),
+            TRACE("value %s, chunk %i size %i\n",debugstr_w(value),
                     chunk, size);
             if (size)
                 nd2= msi_realloc(newdata,(size + chunk));



More information about the wine-patches mailing list