Module: wine Branch: master Commit: dbf7b7b398ea56a8a9435903b152e36bae587ff9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=dbf7b7b398ea56a8a9435903b1...
Author: Francois Gouget fgouget@free.fr Date: Sun May 27 13:18:49 2007 +0200
msi/tests: Fix a signed/unsigned int mismatch.
---
dlls/msi/tests/automation.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/tests/automation.c b/dlls/msi/tests/automation.c index 8bf2913..6369939 100644 --- a/dlls/msi/tests/automation.c +++ b/dlls/msi/tests/automation.c @@ -589,7 +589,7 @@ static HRESULT invoke(IDispatch *pDispatch, LPCSTR szName, WORD wFlags, DISPPARA OLECHAR *name = NULL; DISPID dispid; HRESULT hr; - int i; + UINT i; UINT len;
memset(pVarResult, 0, sizeof(VARIANT));