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
* spice variables :)
*/
BOOLEAN ONEacDebug = FALSE;
BOOLEAN ONEdcDebug = TRUE;
BOOLEAN ONEtranDebug = TRUE;
BOOLEAN ONEjacDebug = FALSE;
int ONEacDebug = FALSE;
int ONEdcDebug = TRUE;
int ONEtranDebug = TRUE;
int ONEjacDebug = FALSE;
BOOLEAN TWOacDebug = FALSE;
BOOLEAN TWOdcDebug = TRUE;
BOOLEAN TWOtranDebug = TRUE;
BOOLEAN TWOjacDebug = FALSE;
int TWOacDebug = FALSE;
int TWOdcDebug = TRUE;
int TWOtranDebug = TRUE;
int TWOjacDebug = FALSE;
/* CIDER Global Variable Declarations */