From dc6d46c180390620efe9c994b00c71fb1837c67e Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sat, 13 May 2000 06:05:24 +0000 Subject: [PATCH] "INT" configuration values must be of type long --- ext/standard/assert.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/standard/assert.c b/ext/standard/assert.c index b55239c3ce4..c040eff916c 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;