1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Fixed the last fix

git-svn-id: svn://svn.cc65.org/cc65/trunk@3171 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-08-02 17:19:52 +00:00
parent 123677c802
commit 366d066375

View File

@ -436,7 +436,7 @@ static unsigned FunctionParamList (FuncDesc* Func)
/* No prototype available. Convert array to "pointer to first
* element", and function to "pointer to function".
*/
Param->Type = PtrConversion (Param->Type)
Expr.Type = PtrConversion (Expr.Type);
}