fusion: Avoid signed-unsigned integer comparisons

Andrew Talbot andrew.talbot at talbotville.com
Wed Jan 16 14:42:26 CST 2013


Changelog:
    fusion: Avoid signed-unsigned integer comparisons.

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]);
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20130116/ba77f74e/attachment.html>


More information about the wine-patches mailing list