diff options
Diffstat (limited to 'testsuite/libffi.call/.svn/text-base/err_bad_abi.c.svn-base')
-rw-r--r-- | testsuite/libffi.call/.svn/text-base/err_bad_abi.c.svn-base | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/testsuite/libffi.call/.svn/text-base/err_bad_abi.c.svn-base b/testsuite/libffi.call/.svn/text-base/err_bad_abi.c.svn-base index a21a3fd..ce0f3bb 100644 --- a/testsuite/libffi.call/.svn/text-base/err_bad_abi.c.svn-base +++ b/testsuite/libffi.call/.svn/text-base/err_bad_abi.c.svn-base @@ -17,11 +17,9 @@ int main (void) ffi_cif cif; void *code; ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code); - void* args[1]; ffi_type* arg_types[1]; arg_types[0] = NULL; - args[0] = NULL; CHECK(ffi_prep_cif(&cif, 255, 0, &ffi_type_void, arg_types) == FFI_BAD_ABI); |