diff options
-rw-r--r-- | ext/standard/assert.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/assert.c b/ext/standard/assert.c index b55239c3ce..c040eff916 100644 --- a/ext/standard/assert.c +++ b/ext/standard/assert.c @@ -25,10 +25,10 @@ #include "php_ini.h" typedef struct { - int active; - int bail; - int warning; - int quiet_eval; + long active; + long bail; + long warning; + long quiet_eval; char *default_callback; char *callback; } php_assert_globals; |