Skip to content

Commit

Permalink
Add missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperisager committed Oct 8, 2024
1 parent 1a47519 commit 6071587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/src/main/jni/Worklet.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Java_to_holepunch_bare_kit_Worklet_init (JNIEnv *env, jobject self, jint jmemory
if ((*env)->IsSameObject(env, jassets, NULL)) {
options.assets = NULL;
} else {
options.assets = (*env)->GetStringUTFChars(env, jassets, NULL)
options.assets = (*env)->GetStringUTFChars(env, jassets, NULL);
}

err = bare_worklet_init(worklet, &options);
Expand Down

0 comments on commit 6071587

Please sign in to comment.