From 76fdac03686ef8e08850ab4365bf19d7ac0d4ea3 Mon Sep 17 00:00:00 2001 From: Stefan Huehner Date: Thu, 21 Jul 2005 11:58:39 +0000 Subject: [PATCH] Fix some -Wsign-compare warnings. --- tools/winedump/le.c | 4 ++-- tools/winedump/minidump.c | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/winedump/le.c b/tools/winedump/le.c index 9432a16c93d..57b34a25280 100644 --- a/tools/winedump/le.c +++ b/tools/winedump/le.c @@ -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 ) { struct o32_obj *pobj; - int i; + unsigned int i; printf("\nObject table:\n"); pobj = (struct o32_obj *)((const unsigned char *)le + le->e32_objtab); for (i = 0; i < le->e32_objcnt; i++) { - int j; + unsigned int j; struct o32_map *pmap=0; printf(" Obj. Rel.Base Codesize Flags Tableidx Tablesize Name\n"); diff --git a/tools/winedump/minidump.c b/tools/winedump/minidump.c index 1f725658ad6..4382c741edd 100644 --- a/tools/winedump/minidump.c +++ b/tools/winedump/minidump.c @@ -47,7 +47,7 @@ static void dump_mdmp_string(DWORD rva) static MINIDUMP_DIRECTORY* get_mdmp_dir(const MINIDUMP_HEADER* hdr, int str_idx) { MINIDUMP_DIRECTORY* dir; - int i; + unsigned int i; for (i = 0; i < hdr->NumberOfStreams; i++) { @@ -92,7 +92,7 @@ void mdmp_dump(void) { MINIDUMP_THREAD_LIST* mtl = (MINIDUMP_THREAD_LIST*)stream; MINIDUMP_THREAD* mt = &mtl->Threads[0]; - int i; + unsigned int i; printf("Threads: %lu\n", mtl->NumberOfThreads); for (i = 0; i < mtl->NumberOfThreads; i++, mt++) @@ -117,7 +117,7 @@ void mdmp_dump(void) { MINIDUMP_MODULE_LIST* mml = (MINIDUMP_MODULE_LIST*)stream; MINIDUMP_MODULE* mm = &mml->Modules[0]; - int i; + unsigned int i; const char* p1; const char* p2; @@ -209,7 +209,7 @@ void mdmp_dump(void) { MINIDUMP_MEMORY_LIST* mml = (MINIDUMP_MEMORY_LIST*)stream; MINIDUMP_MEMORY_DESCRIPTOR* mmd = &mml->MemoryRanges[0]; - int i; + unsigned int i; printf("Memory Ranges: %lu\n", mml->NumberOfMemoryRanges); for (i = 0; i < mml->NumberOfMemoryRanges; i++, mmd++) @@ -338,7 +338,7 @@ void mdmp_dump(void) case ExceptionStream: { MINIDUMP_EXCEPTION_STREAM* mes = (MINIDUMP_EXCEPTION_STREAM*)stream; - int i; + unsigned int i; printf("Exception:\n"); printf(" ThreadId: %08lx\n", mes->ThreadId);