summaryrefslogtreecommitdiff
path: root/ext/wddx/tests/bug70661.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/wddx/tests/bug70661.phpt')
-rw-r--r--ext/wddx/tests/bug70661.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/wddx/tests/bug70661.phpt b/ext/wddx/tests/bug70661.phpt
index e068c20a7a..702f785bf0 100644
--- a/ext/wddx/tests/bug70661.phpt
+++ b/ext/wddx/tests/bug70661.phpt
@@ -43,12 +43,12 @@ var_dump($y);
function ptr2str($ptr)
{
$out = '';
-
+
for ($i = 0; $i < 8; $i++) {
$out .= chr($ptr & 0xff);
$ptr >>= 8;
}
-
+
return $out;
}
?>