Module: wine Branch: master Commit: c46636b1cf48e9c2e2284109aa88d013f83b8579 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c46636b1cf48e9c2e2284109aa...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Wed Jan 16 20:42:26 2013 +0000
fusion: Avoid signed-unsigned integer comparisons.
---
dlls/fusion/asmname.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/fusion/asmname.c b/dlls/fusion/asmname.c index 78bc978..162a76b 100644 --- a/dlls/fusion/asmname.c +++ b/dlls/fusion/asmname.c @@ -261,7 +261,7 @@ static HRESULT WINAPI IAssemblyNameImpl_GetDisplayName(IAssemblyName *iface, { static const WCHAR spec[] = {'%','d',0}; static const WCHAR period[] = {'.',0}; - int i; + DWORD i;
wsprintfW(verstr, spec, name->version[0]);