master #8

Merged
gmp merged 2 commits from whereswaldon/jni:master into master 2021-06-09 21:17:06 -04:00
Showing only changes of commit f8a0df591f - Show all commits

2
jni.c
View File

@ -118,7 +118,7 @@ jint _jni_CallStaticIntMethodA(JNIEnv *env, jclass cls, jmethodID method, jvalue
return (*env)->CallStaticIntMethodA(env, cls, method, args); return (*env)->CallStaticIntMethodA(env, cls, method, args);
} }
jint _jni_CallStaticBooleanMethodA(JNIEnv *env, jclass cls, jmethodID method, jvalue *args) { jboolean _jni_CallStaticBooleanMethodA(JNIEnv *env, jclass cls, jmethodID method, jvalue *args) {
return (*env)->CallStaticBooleanMethodA(env, cls, method, args); return (*env)->CallStaticBooleanMethodA(env, cls, method, args);
} }