winetest: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-01-27 10:17:26 +01:00 committed by Alexandre Julliard
parent aa9eb8e067
commit 53085f10f1
1 changed files with 2 additions and 1 deletions

View File

@ -318,7 +318,8 @@ static BOOL is_native_dll( HMODULE module )
*/
static BOOL is_stub_dll(const char *filename)
{
DWORD size, ver;
UINT size;
DWORD ver;
BOOL isstub = FALSE;
char *p, *data;