summaryrefslogtreecommitdiff
path: root/ext/standard/assert.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-13 06:05:24 +0000
committerSascha Schumann <sas@php.net>2000-05-13 06:05:24 +0000
commitdc6d46c180390620efe9c994b00c71fb1837c67e (patch)
tree30cd245980a63707f227259093dd88a827536ad8 /ext/standard/assert.c
parent602914d8245fd1b623feb3f10dcb31d2d818bf69 (diff)
downloadphp-git-dc6d46c180390620efe9c994b00c71fb1837c67e.tar.gz
"INT" configuration values must be of type long
Diffstat (limited to 'ext/standard/assert.c')
-rw-r--r--ext/standard/assert.c8
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;