Commit 53085f10 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winetest: Use correct integral type.

parent aa9eb8e0
...@@ -318,7 +318,8 @@ static BOOL is_native_dll( HMODULE module ) ...@@ -318,7 +318,8 @@ static BOOL is_native_dll( HMODULE module )
*/ */
static BOOL is_stub_dll(const char *filename) static BOOL is_stub_dll(const char *filename)
{ {
DWORD size, ver; UINT size;
DWORD ver;
BOOL isstub = FALSE; BOOL isstub = FALSE;
char *p, *data; char *p, *data;
......
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