avoid 10 000 warnings

This commit is contained in:
Antony Dovgal 2007-04-20 21:00:07 +00:00
parent edb8190a95
commit ff4ee42767

View File

@ -33,7 +33,7 @@ fputs($fp, chr($c), 1);
/*write some data to cause overflow*/
for ($i=0; $i<10000; $i++) {
fwrite($fp, chr($c), 1);
@fwrite($fp, chr($c), 1);
}
fclose($fp);