diff options
author | Sascha Schumann <sas@php.net> | 2000-12-21 05:31:18 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-12-21 05:31:18 +0000 |
commit | 225a08e8ddaf4124d32d1a36eef86c7ea4171863 (patch) | |
tree | 4299f9cfe02d6b3fa640b1d329efc48d9e3c561f | |
parent | e6f9ea51583454647bc9b010306e9df32da35bd0 (diff) | |
download | php-git-225a08e8ddaf4124d32d1a36eef86c7ea4171863.tar.gz |
No need for GCC extensions in non-debugging mode.
PR: #8345
-rw-r--r-- | ext/session/mod_mm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c index 355c991e7e..a389f88efe 100644 --- a/ext/session/mod_mm.c +++ b/ext/session/mod_mm.c @@ -57,7 +57,7 @@ static ps_mm *ps_mm_instance = NULL; #if 0 #define ps_mm_debug(a...) fprintf(stderr, a) #else -#define ps_mm_debug(a...) +#define ps_mm_debug #endif #define BITS_IN_int (sizeof(int) * CHAR_BIT) |