Fix the use of 0 instead of FALSE

This commit is contained in:
Stanislav Gromov 2021-01-03 17:05:28 +07:00
parent a68bacf86e
commit a1165ace54

View File

@ -5044,7 +5044,7 @@ static long max_stacksize(symbol *root,int *recursion)
maxsize=0;
maxparams=0;
*recursion=0; /* assume no recursion */
*recursion=FALSE; /* assume no recursion */
for (sym=root->next; sym!=NULL; sym=sym->next) {
int recursion_detected;
/* drop out if this is not a user-implemented function */