winecrt0: Use the correct integral type.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2022-01-27 17:54:12 +01:00
parent c8c96e8970
commit 0cdf9359e0

View file

@ -160,7 +160,7 @@ static void init_options(void)
static const char * __cdecl fallback__wine_dbg_strdup( const char *str )
{
static char *list[32];
static int pos;
static LONG pos;
char *ret = strdup( str );
int idx;