Commit 0cdf9359 authored by Alexandre Julliard's avatar Alexandre Julliard

winecrt0: Use the correct integral type.

parent c8c96e89
......@@ -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;
......
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