diff options
author | Antony Dovgal <tony2001@php.net> | 2004-08-13 14:59:58 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2004-08-13 14:59:58 +0000 |
commit | e511b57e2a95f894be59d1a0a6b784ee45b16e0b (patch) | |
tree | c39386100943fef0fbeadaa10557d9641667931c /ext/ereg/regex/regexec.c | |
parent | f370d0290f0925971c04fbac6f5bbc7e88f2dac4 (diff) | |
download | php-git-e511b57e2a95f894be59d1a0a6b784ee45b16e0b.tar.gz |
fix yet another annoying compile warning
Diffstat (limited to 'ext/ereg/regex/regexec.c')
-rw-r--r-- | ext/ereg/regex/regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ereg/regex/regexec.c b/ext/ereg/regex/regexec.c index c8cb8fdf56..bbfe094c96 100644 --- a/ext/ereg/regex/regexec.c +++ b/ext/ereg/regex/regexec.c @@ -16,7 +16,7 @@ #include "utils.h" #include "regex2.h" -static int nope = 0; /* for use in asserts; shuts lint up */ +#define PHP_REGEX_NOPE 0; /* for use in asserts; shuts lint up */ /* macros for manipulating states, small version */ #define states unsigned |