From: Andi Gutmans Date: Tue, 28 Sep 1999 17:37:06 +0000 (+0000) Subject: - Get rid of warning X-Git-Tag: php-4.0b3_RC2~408 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf6c92949c8b310ddf1023aa1e28de76754b6891;p=php - Get rid of warning --- diff --git a/ext/standard/string.c b/ext/standard/string.c index 46abe6e917..b382cc4d4e 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -403,7 +403,6 @@ PHPAPI char *_php3_strtoupper(char *s) PHP_FUNCTION(strtoupper) { pval **arg; - char *ret; if (ARG_COUNT(ht) != 1 || getParametersEx(1, &arg)) { WRONG_PARAM_COUNT; diff --git a/tests/testfunc2 b/tests/testfunc2 index 9bcae0f183..42f91f2bae 100644 --- a/tests/testfunc2 +++ b/tests/testfunc2 @@ -14,6 +14,6 @@ function bar($a) foo($a); } -for ($i=0; $i<1000000; $i=$i+1) { +for ($i=0; $i<10000; $i=$i+1) { bar($i); }