Francois Gouget : kernel32/tests: Fix a signed/unsigned warning.

Alexandre Julliard julliard at winehq.org
Wed Nov 14 07:30:11 CST 2007


Module: wine
Branch: master
Commit: b734dee31e66a7fa50fd4197f436c12f0ab4d58a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b734dee31e66a7fa50fd4197f436c12f0ab4d58a

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Nov 13 20:51:57 2007 +0100

kernel32/tests: Fix a signed/unsigned warning.

---

 dlls/kernel32/tests/actctx.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/tests/actctx.c b/dlls/kernel32/tests/actctx.c
index 3720f74..643128d 100644
--- a/dlls/kernel32/tests/actctx.c
+++ b/dlls/kernel32/tests/actctx.c
@@ -226,7 +226,7 @@ static BOOL create_wide_manifest(const char *filename, const char *manifest, BOO
     wmanifest[0] = 0xfeff;
     if (fReverse)
     {
-        int i;
+        size_t i;
         for (i = 0; i < strlen(manifest)+1; i++)
             wmanifest[i] = (wmanifest[i] << 8) | ((wmanifest[i] >> 8) & 0xff);
     }




More information about the wine-cvs mailing list