From 821b228cdac9050bd5536c4de281f648901c65f5 Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Wed, 24 Sep 2003 05:12:28 +0000 Subject: [PATCH] MSVC warning fix. --- tools/winebuild/res16.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winebuild/res16.c b/tools/winebuild/res16.c index bd018397180..0c82f602ec8 100644 --- a/tools/winebuild/res16.c +++ b/tools/winebuild/res16.c @@ -98,7 +98,7 @@ static struct res_type *add_type( const struct resource *res ) } /* 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++; if (file_pos > file_end) fatal_error( "%s is a truncated/corrupted file\n", file_name );