Commit b734dee3 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

kernel32/tests: Fix a signed/unsigned warning.

parent 4fddc5e7
...@@ -226,7 +226,7 @@ static BOOL create_wide_manifest(const char *filename, const char *manifest, BOO ...@@ -226,7 +226,7 @@ static BOOL create_wide_manifest(const char *filename, const char *manifest, BOO
wmanifest[0] = 0xfeff; wmanifest[0] = 0xfeff;
if (fReverse) if (fReverse)
{ {
int i; size_t i;
for (i = 0; i < strlen(manifest)+1; i++) for (i = 0; i < strlen(manifest)+1; i++)
wmanifest[i] = (wmanifest[i] << 8) | ((wmanifest[i] >> 8) & 0xff); wmanifest[i] = (wmanifest[i] << 8) | ((wmanifest[i] >> 8) & 0xff);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment