From 4bdaa4f74c4988e257e279b4b7e971fd9c9b7701 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Wed, 5 Nov 2008 15:25:19 +0000 Subject: [PATCH] - Fix build. svn path=/trunk/; revision=37206 --- reactos/tools/winebuild/res32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/winebuild/res32.c b/reactos/tools/winebuild/res32.c index 82e938c7332..fad3429b721 100644 --- a/reactos/tools/winebuild/res32.c +++ b/reactos/tools/winebuild/res32.c @@ -207,7 +207,7 @@ static void load_next_resource( DLLSPEC *spec ) res->data = file_pos - 2*sizeof(DWORD) + hdr_size; get_string( &res->type ); get_string( &res->name ); - if ((UINT_PTR)file_pos & 2) get_word(); /* align to dword boundary */ + if ((ULONG_PTR)file_pos & 2) get_word(); /* align to dword boundary */ get_dword(); /* skip data version */ get_word(); /* skip mem options */ res->lang = get_word();