summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzseek_basic2.phpt
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-06-08 13:53:01 -0700
committerStanislav Malyshev <stas@php.net>2014-06-08 13:53:01 -0700
commite35945490f6fc4bc6c3a7e42484d30eb7d544532 (patch)
tree3c013063d8b2574c516d91620a261ea064a34e70 /ext/zlib/tests/gzseek_basic2.phpt
parent1e2a4a67dd4608e00a5cd548840fc92940cf9f45 (diff)
parentda6abc8db4de42cb8dd4b6c7e13bce339c4b320f (diff)
downloadphp-git-e35945490f6fc4bc6c3a7e42484d30eb7d544532.tar.gz
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5: Remove superfluous echos.
Diffstat (limited to 'ext/zlib/tests/gzseek_basic2.phpt')
-rw-r--r--ext/zlib/tests/gzseek_basic2.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/tests/gzseek_basic2.phpt b/ext/zlib/tests/gzseek_basic2.phpt
index 82d305d0fb..8e037af139 100644
--- a/ext/zlib/tests/gzseek_basic2.phpt
+++ b/ext/zlib/tests/gzseek_basic2.phpt
@@ -24,7 +24,7 @@ gzclose($h);
echo "\nreading the output file\n";
$h = gzopen($f, 'r');
echo gzread($h, strlen($str1))."\n";
-echo var_dump(bin2hex(gzread($h, 20)));
+var_dump(bin2hex(gzread($h, 20)));
echo gzread($h, strlen($str2))."\n";
gzclose($h);
unlink($f);