From a1165ace5410496f1a3b92c7e3ee0f90f1f84e42 Mon Sep 17 00:00:00 2001 From: Stanislav Gromov Date: Sun, 3 Jan 2021 17:05:28 +0700 Subject: [PATCH] Fix the use of `0` instead of `FALSE` --- source/compiler/sc1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/compiler/sc1.c b/source/compiler/sc1.c index 9b30d31..8ffe87e 100644 --- a/source/compiler/sc1.c +++ b/source/compiler/sc1.c @@ -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 */