Commit 87b0ac2e authored by Peter Berg Larsen's avatar Peter Berg Larsen Committed by Alexandre Julliard

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

prototypes. In 'unsigned char *functionname()' char was not seen; therefore implicit 'unsigned int'.
parent e99a183c
...@@ -281,7 +281,8 @@ static const char *get_type (parsed_symbol *sym, const char *proto, int arg) ...@@ -281,7 +281,8 @@ static const char *get_type (parsed_symbol *sym, const char *proto, int arg)
{ {
iter = proto; iter = proto;
base_type = catch_unsigned; base_type = catch_unsigned;
} } else
catch_unsigned = NULL;
} }
else else
catch_unsigned = NULL; catch_unsigned = NULL;
......
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