Commit 76fdac03 authored by Stefan Huehner's avatar Stefan Huehner Committed by Alexandre Julliard

Fix some -Wsign-compare warnings.

parent 4605b955
...@@ -229,13 +229,13 @@ static void dump_le_header( const IMAGE_VXD_HEADER *le ) ...@@ -229,13 +229,13 @@ static void dump_le_header( const IMAGE_VXD_HEADER *le )
static void dump_le_objects( const void *base, const IMAGE_VXD_HEADER *le ) static void dump_le_objects( const void *base, const IMAGE_VXD_HEADER *le )
{ {
struct o32_obj *pobj; struct o32_obj *pobj;
int i; unsigned int i;
printf("\nObject table:\n"); printf("\nObject table:\n");
pobj = (struct o32_obj *)((const unsigned char *)le + le->e32_objtab); pobj = (struct o32_obj *)((const unsigned char *)le + le->e32_objtab);
for (i = 0; i < le->e32_objcnt; i++) for (i = 0; i < le->e32_objcnt; i++)
{ {
int j; unsigned int j;
struct o32_map *pmap=0; struct o32_map *pmap=0;
printf(" Obj. Rel.Base Codesize Flags Tableidx Tablesize Name\n"); printf(" Obj. Rel.Base Codesize Flags Tableidx Tablesize Name\n");
......
...@@ -47,7 +47,7 @@ static void dump_mdmp_string(DWORD rva) ...@@ -47,7 +47,7 @@ static void dump_mdmp_string(DWORD rva)
static MINIDUMP_DIRECTORY* get_mdmp_dir(const MINIDUMP_HEADER* hdr, int str_idx) static MINIDUMP_DIRECTORY* get_mdmp_dir(const MINIDUMP_HEADER* hdr, int str_idx)
{ {
MINIDUMP_DIRECTORY* dir; MINIDUMP_DIRECTORY* dir;
int i; unsigned int i;
for (i = 0; i < hdr->NumberOfStreams; i++) for (i = 0; i < hdr->NumberOfStreams; i++)
{ {
...@@ -92,7 +92,7 @@ void mdmp_dump(void) ...@@ -92,7 +92,7 @@ void mdmp_dump(void)
{ {
MINIDUMP_THREAD_LIST* mtl = (MINIDUMP_THREAD_LIST*)stream; MINIDUMP_THREAD_LIST* mtl = (MINIDUMP_THREAD_LIST*)stream;
MINIDUMP_THREAD* mt = &mtl->Threads[0]; MINIDUMP_THREAD* mt = &mtl->Threads[0];
int i; unsigned int i;
printf("Threads: %lu\n", mtl->NumberOfThreads); printf("Threads: %lu\n", mtl->NumberOfThreads);
for (i = 0; i < mtl->NumberOfThreads; i++, mt++) for (i = 0; i < mtl->NumberOfThreads; i++, mt++)
...@@ -117,7 +117,7 @@ void mdmp_dump(void) ...@@ -117,7 +117,7 @@ void mdmp_dump(void)
{ {
MINIDUMP_MODULE_LIST* mml = (MINIDUMP_MODULE_LIST*)stream; MINIDUMP_MODULE_LIST* mml = (MINIDUMP_MODULE_LIST*)stream;
MINIDUMP_MODULE* mm = &mml->Modules[0]; MINIDUMP_MODULE* mm = &mml->Modules[0];
int i; unsigned int i;
const char* p1; const char* p1;
const char* p2; const char* p2;
...@@ -209,7 +209,7 @@ void mdmp_dump(void) ...@@ -209,7 +209,7 @@ void mdmp_dump(void)
{ {
MINIDUMP_MEMORY_LIST* mml = (MINIDUMP_MEMORY_LIST*)stream; MINIDUMP_MEMORY_LIST* mml = (MINIDUMP_MEMORY_LIST*)stream;
MINIDUMP_MEMORY_DESCRIPTOR* mmd = &mml->MemoryRanges[0]; MINIDUMP_MEMORY_DESCRIPTOR* mmd = &mml->MemoryRanges[0];
int i; unsigned int i;
printf("Memory Ranges: %lu\n", mml->NumberOfMemoryRanges); printf("Memory Ranges: %lu\n", mml->NumberOfMemoryRanges);
for (i = 0; i < mml->NumberOfMemoryRanges; i++, mmd++) for (i = 0; i < mml->NumberOfMemoryRanges; i++, mmd++)
...@@ -338,7 +338,7 @@ void mdmp_dump(void) ...@@ -338,7 +338,7 @@ void mdmp_dump(void)
case ExceptionStream: case ExceptionStream:
{ {
MINIDUMP_EXCEPTION_STREAM* mes = (MINIDUMP_EXCEPTION_STREAM*)stream; MINIDUMP_EXCEPTION_STREAM* mes = (MINIDUMP_EXCEPTION_STREAM*)stream;
int i; unsigned int i;
printf("Exception:\n"); printf("Exception:\n");
printf(" ThreadId: %08lx\n", mes->ThreadId); printf(" ThreadId: %08lx\n", mes->ThreadId);
......
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