1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00

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);