summaryrefslogtreecommitdiff
path: root/Zend/tests/zend_signed_multiply-64bit-2.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/zend_signed_multiply-64bit-2.phpt')
-rw-r--r--Zend/tests/zend_signed_multiply-64bit-2.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/zend_signed_multiply-64bit-2.phpt b/Zend/tests/zend_signed_multiply-64bit-2.phpt
index aa8ee47db6..ff0e88a78d 100644
--- a/Zend/tests/zend_signed_multiply-64bit-2.phpt
+++ b/Zend/tests/zend_signed_multiply-64bit-2.phpt
@@ -6,11 +6,11 @@ Zend signed multiply 64-bit, variation 2
<?php
for($c = -16; $c < 0; $c++) {
var_dump($c, intdiv(PHP_INT_MIN, 10), intdiv(PHP_INT_MIN, 10) * $c);
- echo "-----------\n";
+ echo "-----------\n";
}
for($c = 0; $c <= 16; $c++) {
var_dump($c, intdiv(PHP_INT_MAX, 10), intdiv(PHP_INT_MAX, 10) * $c);
- echo "-----------\n";
+ echo "-----------\n";
}
?>
--EXPECT--