summaryrefslogtreecommitdiff
path: root/ext/ffi/tests/037.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ffi/tests/037.phpt')
-rw-r--r--ext/ffi/tests/037.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ffi/tests/037.phpt b/ext/ffi/tests/037.phpt
index 0b67e4a4da..d8f0a88afa 100644
--- a/ext/ffi/tests/037.phpt
+++ b/ext/ffi/tests/037.phpt
@@ -7,10 +7,10 @@ ffi.enable=1
--FILE--
<?php
function foo($ptr) {
- $buf = FFI::new("int*[1]");
- $buf[0] = $ptr;
- //...
- return $buf[0];
+ $buf = FFI::new("int*[1]");
+ $buf[0] = $ptr;
+ //...
+ return $buf[0];
}
$int = FFI::new("int");