MSVC warning fix.

oldstable
Jon Griffiths 2003-09-24 05:12:28 +00:00 committed by Alexandre Julliard
parent 70217641e3
commit 821b228cda
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ static struct res_type *add_type( const struct resource *res )
} }
/* get the next byte from the current resource file */ /* get the next byte from the current resource file */
static WORD get_byte(void) static unsigned char get_byte(void)
{ {
unsigned char ret = *file_pos++; unsigned char ret = *file_pos++;
if (file_pos > file_end) fatal_error( "%s is a truncated/corrupted file\n", file_name ); if (file_pos > file_end) fatal_error( "%s is a truncated/corrupted file\n", file_name );