Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasblaesing committed Mar 17, 2024
1 parent d1fce89 commit cda72d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/callback.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ invoke_callback(JNIEnv* env, callback *cb, ffi_cif* cif, void *resp, void **cbar
*((void **)args[i+3]) = newJavaWString(env, *(void **)cbargs[i]);
break;
case CVT_STRUCTURE:
*((void **)args[i+3]) = newJavaStructure(env, *(void **)cbargs[i], cb-><[i]);
*((void **)args[i+3]) = newJavaStructure(env, *(void **)cbargs[i], cb->[i]);
break;
case CVT_STRUCTURE_BYVAL:
args[i+3] = alloca(sizeof(void *));
Expand Down

0 comments on commit cda72d3

Please sign in to comment.