Fix compiler crash due to missing recursion message warning.

This commit is contained in:
Arkshine
2014-08-31 14:52:24 +02:00
parent 1463103cd7
commit de85f2735e
2 changed files with 2 additions and 1 deletions

View File

@ -4271,7 +4271,7 @@ static long max_stacksize_recurse(symbol **sourcesym,symbol *sym,long basesize,i
funcdisplayname(symname,sym->name);
errorset(sSETFILE,sym->fnumber);
errorset(sSETLINE,sym->lnumber);
error(237,symname); /* recursive function */
error(234,symname); /* recursive function */
} /* if */
*recursion=1;
goto break_recursion; /* recursion was detected, quit loop */