Commit 15d64362 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msi: Remove unneeded cast.

parent edaa0fbc
...@@ -585,7 +585,7 @@ static DWORD deformat_string_internal(MSIPACKAGE *package, LPCWSTR ptr, ...@@ -585,7 +585,7 @@ static DWORD deformat_string_internal(MSIPACKAGE *package, LPCWSTR ptr,
if (value!=NULL) if (value!=NULL)
{ {
LPBYTE nd2; 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); chunk, size);
if (size) if (size)
nd2= msi_realloc(newdata,(size + chunk)); nd2= msi_realloc(newdata,(size + chunk));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment