Fix a return type bug after allowing 'foo *functionname()'

prototypes. In 'unsigned char *functionname()' char was not seen;
therefore implicit 'unsigned int'.
This commit is contained in:
Peter Berg Larsen 2005-01-05 13:23:17 +00:00 committed by Alexandre Julliard
parent e99a183cc3
commit 87b0ac2e1f
1 changed files with 2 additions and 1 deletions

View File

@ -281,7 +281,8 @@ static const char *get_type (parsed_symbol *sym, const char *proto, int arg)
{
iter = proto;
base_type = catch_unsigned;
}
} else
catch_unsigned = NULL;
}
else
catch_unsigned = NULL;