diff options
Diffstat (limited to 'libffi/testsuite/libffi.call/err_bad_abi.c')
-rw-r--r-- | libffi/testsuite/libffi.call/err_bad_abi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libffi/testsuite/libffi.call/err_bad_abi.c b/libffi/testsuite/libffi.call/err_bad_abi.c index a21a3fddd04..ce0f3bb2782 100644 --- a/libffi/testsuite/libffi.call/err_bad_abi.c +++ b/libffi/testsuite/libffi.call/err_bad_abi.c @@ -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); |