- Get rid of warning
authorAndi Gutmans <andi@php.net>
Tue, 28 Sep 1999 17:37:06 +0000 (17:37 +0000)
committerAndi Gutmans <andi@php.net>
Tue, 28 Sep 1999 17:37:06 +0000 (17:37 +0000)
ext/standard/string.c
tests/testfunc2

index 46abe6e9173cc448346fde0774c1d8056be8f906..b382cc4d4e47a7036f7cdc74b781542b2f67358c 100644 (file)
@@ -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;
index 9bcae0f18357828a9a9812b4ac02861a4caeebea..42f91f2baed7bf6e48e3c8e3faaf9af25973a555 100644 (file)
@@ -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);
 }