mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
dbghelp: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
6eecf4886f
commit
ddf922d7a1
@ -273,7 +273,7 @@ static BOOL elf_map_file(struct elf_map_file_data* emfd, struct image_file_map*
|
||||
{
|
||||
static const BYTE elf_signature[4] = { ELFMAG0, ELFMAG1, ELFMAG2, ELFMAG3 };
|
||||
struct stat statbuf;
|
||||
int i;
|
||||
unsigned int i;
|
||||
Elf_Phdr phdr;
|
||||
size_t tmp, page_mask = sysconf( _SC_PAGESIZE ) - 1;
|
||||
char* filename;
|
||||
|
@ -1370,7 +1370,8 @@ static void codeview_snarf_linetab(const struct msc_debug_info* msc_dbg, const B
|
||||
{
|
||||
const BYTE* ptr = linetab;
|
||||
int nfile, nseg;
|
||||
int i, j, k;
|
||||
int i, j;
|
||||
unsigned int k;
|
||||
const unsigned int* filetab;
|
||||
const unsigned int* lt_ptr;
|
||||
const unsigned short* linenos;
|
||||
|
Loading…
Reference in New Issue
Block a user