Commit 07c21417 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

secur32/tests: Sign compare fixes.

parent 9e39e8a7
......@@ -48,7 +48,7 @@ static void testGetComputerObjectNameA(void)
char name[256];
ULONG size;
BOOLEAN rc;
int i;
UINT i;
for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); i++) {
size = sizeof(name);
......@@ -73,7 +73,7 @@ static void testGetComputerObjectNameW(void)
WCHAR nameW[256];
ULONG size;
BOOLEAN rc;
int i;
UINT i;
for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); i++) {
size = sizeof(nameW)/sizeof(nameW[0]);
......@@ -101,7 +101,7 @@ static void testGetUserNameExA(void)
char name[256];
ULONG size;
BOOLEAN rc;
int i;
UINT i;
for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); i++) {
size = sizeof(name);
......@@ -148,7 +148,7 @@ static void testGetUserNameExW(void)
WCHAR nameW[256];
ULONG size;
BOOLEAN rc;
int i;
UINT i;
for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); i++) {
size = sizeof(nameW);
......
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