flush
[m6w6/ext-psi] / tests / pipe / pipe.psi
index deb11d01711243d2787992287971386175780034..fd7e3ff1770e975a7e8ce4763acf2daa8432235b 100644 (file)
@@ -3,6 +3,6 @@ extern int pipe(int fds[2]);
 
 function \pipe(array &$fds = null) : int {
        return to_int(pipe);
-       let fds = calloc(2, int);
+       let fds = calloc(2, psi\SIZEOF_INT);
        set $fds = to_array(fds[2]);
 }