Skip to content
Snippets Groups Projects
Commit 1e48c434 authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

rts: Various warnings fixes

parent 6086effd
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ static AdjustorWritable allocate_adjustor(AdjustorExecutable *exec_ret, ffi_cif
{
AdjustorWritable writ;
ffi_status r = ffi_alloc_prep_closure(&writ, cif, wptr, hptr, exec_ret);
ffi_status r = ffi_alloc_prep_closure((ffi_closure **) &writ, cif, wptr, hptr, exec_ret);
if (r != FFI_OK)
barf("ffi_alloc_prep_closure failed: %d", r);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment