raising the head after a three-weeks refactoring
[m6w6/ext-psi] / tests / pipe / pipe.psi
index 24c572381125c9108179c84c99f1c521c222e33c..d1961da8afc4b5bbf8d480405ea826c1fc21d558 100644 (file)
@@ -4,5 +4,5 @@
 function \pipe(array &$fds = null) : int {
        return to_int(pipe);
        let fildes = calloc(2, psi\SIZEOF_INT);
-       set $fds = to_array(fildes[2]);
+       set $fds = to_array(*fildes, 2, to_int(*fildes));
 }