Module: wine Branch: master Commit: 15d6436295c9b41a8fff91d9c9bdae5f97c4e726 URL: http://source.winehq.org/git/wine.git/?a=commit;h=15d6436295c9b41a8fff91d9c9... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Fri Dec 21 17:05:33 2007 +0000 msi: Remove unneeded cast. --- dlls/msi/format.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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));