diff options
author | Andi Gutmans <andi@php.net> | 1999-09-28 17:37:06 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-09-28 17:37:06 +0000 |
commit | cf6c92949c8b310ddf1023aa1e28de76754b6891 (patch) | |
tree | e4f907189e068771c83aa9004c2779cdcb020b84 /tests/testfunc2 | |
parent | b56fd4602f85c6c8bd2a63122b28ebe1963eab69 (diff) | |
download | php-git-cf6c92949c8b310ddf1023aa1e28de76754b6891.tar.gz |
- Get rid of warning
Diffstat (limited to 'tests/testfunc2')
-rw-r--r-- | tests/testfunc2 | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |