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:
parent
a77b529928
commit
65a47d3276
|
|
@ -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 */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue