changed FFI>>call:signature:arguments: to return a value

This commit is contained in:
hyunghwan.chung
2019-04-07 17:54:44 +00:00
parent a6f7f85658
commit 90d665781c
2 changed files with 4 additions and 0 deletions

View File

@ -65,5 +65,7 @@ class FFI(Object)
rc := self.ffi call(f, sig, args).
if (rc isError) { FFIException signal: ('Unable to call %s' strfmt(name)) }.
^rc.
}
}