From: Moriyoshi Koizumi Date: Fri, 10 Jan 2003 04:44:21 +0000 (+0000) Subject: Reduced compiler warnings X-Git-Tag: PHP_5_0_dev_before_13561_fix~337 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=380928e6bfe982aecbd7b5e2a42d7db266b4e0b6;p=php Reduced compiler warnings --- diff --git a/ext/ereg/ereg.c b/ext/ereg/ereg.c index 7d9abc9114..791b215d2f 100644 --- a/ext/ereg/ereg.c +++ b/ext/ereg/ereg.c @@ -347,7 +347,7 @@ PHPAPI char *php_reg_replace(const char *pattern, const char *replace, const cha walkbuf = &buf[tmp + subs[0].rm_so]; walk = replace; while (*walk) - if ('\\' == *walk && isdigit(walk[1]) && walk[1] - '0' <= re.re_nsub) { + if ('\\' == *walk && isdigit(walk[1]) && walk[1] - '0' <= (int)re.re_nsub) { if (subs[walk[1] - '0'].rm_so > -1 && subs[walk[1] - '0'].rm_eo > -1 /* this next case shouldn't happen. it does. */ && subs[walk[1] - '0'].rm_so <= subs[walk[1] - '0'].rm_eo) { diff --git a/ext/standard/reg.c b/ext/standard/reg.c index 7d9abc9114..791b215d2f 100644 --- a/ext/standard/reg.c +++ b/ext/standard/reg.c @@ -347,7 +347,7 @@ PHPAPI char *php_reg_replace(const char *pattern, const char *replace, const cha walkbuf = &buf[tmp + subs[0].rm_so]; walk = replace; while (*walk) - if ('\\' == *walk && isdigit(walk[1]) && walk[1] - '0' <= re.re_nsub) { + if ('\\' == *walk && isdigit(walk[1]) && walk[1] - '0' <= (int)re.re_nsub) { if (subs[walk[1] - '0'].rm_so > -1 && subs[walk[1] - '0'].rm_eo > -1 /* this next case shouldn't happen. it does. */ && subs[walk[1] - '0'].rm_so <= subs[walk[1] - '0'].rm_eo) {