Commit 7e90d602 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

itss: Use correct integral type.

parent c5b0974b
...@@ -941,7 +941,7 @@ static UChar *_chm_find_in_PMGL(UChar *page_buf, ...@@ -941,7 +941,7 @@ static UChar *_chm_find_in_PMGL(UChar *page_buf,
* that is provided for us. * that is provided for us.
*/ */
struct chmPmglHeader header; struct chmPmglHeader header;
UInt32 hremain; unsigned int hremain;
UChar *end; UChar *end;
UChar *cur; UChar *cur;
UChar *temp; UChar *temp;
...@@ -983,7 +983,7 @@ static Int32 _chm_find_in_PMGI(UChar *page_buf, ...@@ -983,7 +983,7 @@ static Int32 _chm_find_in_PMGI(UChar *page_buf,
* that is provided for us * that is provided for us
*/ */
struct chmPmgiHeader header; struct chmPmgiHeader header;
UInt32 hremain; unsigned int hremain;
int page=-1; int page=-1;
UChar *end; UChar *end;
UChar *cur; UChar *cur;
...@@ -1093,7 +1093,7 @@ static BOOL _chm_get_cmpblock_bounds(struct chmFile *h, ...@@ -1093,7 +1093,7 @@ static BOOL _chm_get_cmpblock_bounds(struct chmFile *h,
Int64 *len) Int64 *len)
{ {
UChar buffer[8], *dummy; UChar buffer[8], *dummy;
UInt32 remain; unsigned int remain;
/* for all but the last block, use the reset table */ /* for all but the last block, use the reset table */
if (block < h->reset_table.block_count-1) if (block < h->reset_table.block_count-1)
......
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