sst1init.h: remove a weirdness from INIT_PRINTF definition for windows

gcc (mingw) emitted lots of 'left-hand operand of comma expression has
no effect' warnings for it..
This commit is contained in:
sezero
2018-08-10 20:36:28 +03:00
parent 043f38b035
commit b594bf89aa
4 changed files with 4 additions and 4 deletions

View File

@@ -90,7 +90,7 @@
#ifdef FXTRACE
#define INIT_PRINTF DDPRINTF
#else
#define INIT_PRINTF 1 ? (void) 0 : (void)
#define INIT_PRINTF(a) (void)0
#endif
#define INIT_INFO(A)
/* #define GETENV(A) ddgetenv(A) */

View File

@@ -85,7 +85,7 @@
#ifdef FXTRACE
#define INIT_PRINTF DDPRINTF
#else
#define INIT_PRINTF 1 ? (void) 0 : (void)
#define INIT_PRINTF(a) (void)0
#endif
#define INIT_INFO(A)
#define GETENV(A) ddgetenv(A)

View File

@@ -90,7 +90,7 @@
#ifdef FXTRACE
#define INIT_PRINTF DDPRINTF
#else
#define INIT_PRINTF 1 ? (void) 0 : (void)
#define INIT_PRINTF(a) (void)0
#endif
#define INIT_INFO(A)
/* #define GETENV(A) ddgetenv(A) */

View File

@@ -85,7 +85,7 @@
#ifdef FXTRACE
#define INIT_PRINTF DDPRINTF
#else
#define INIT_PRINTF 1 ? (void) 0 : (void)
#define INIT_PRINTF(a) (void)0
#endif
#define INIT_INFO(A)
#define GETENV(A) ddgetenv(A)