Remove compiler warnings: CIDER debug flags are used as int

FIXME: Why arer they defined as BOOLEAN in main.c
without generating a warning?
This commit is contained in:
Holger Vogt 2021-01-29 10:46:10 +01:00
parent a77b529928
commit 65a47d3276
1 changed files with 8 additions and 8 deletions

View File

@ -275,15 +275,15 @@ IFfrontEnd nutmeginfo = {
/* Global debug flags from CIDER, soon they will become /* Global debug flags from CIDER, soon they will become
* spice variables :) * spice variables :)
*/ */
BOOLEAN ONEacDebug = FALSE; int ONEacDebug = FALSE;
BOOLEAN ONEdcDebug = TRUE; int ONEdcDebug = TRUE;
BOOLEAN ONEtranDebug = TRUE; int ONEtranDebug = TRUE;
BOOLEAN ONEjacDebug = FALSE; int ONEjacDebug = FALSE;
BOOLEAN TWOacDebug = FALSE; int TWOacDebug = FALSE;
BOOLEAN TWOdcDebug = TRUE; int TWOdcDebug = TRUE;
BOOLEAN TWOtranDebug = TRUE; int TWOtranDebug = TRUE;
BOOLEAN TWOjacDebug = FALSE; int TWOjacDebug = FALSE;
/* CIDER Global Variable Declarations */ /* CIDER Global Variable Declarations */