Browse Source

Remove compiler warnings: CIDER debug flags are used as int

FIXME: Why arer they defined as BOOLEAN in main.c
without generating a warning?
pre-master-46
Holger Vogt 5 years ago
parent
commit
65a47d3276
  1. 18
      src/sharedspice.c

18
src/sharedspice.c

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

Loading…
Cancel
Save