forked from gmp/jni
1
0
Fork 0

fix: use proper return type for static booleans

Signed-off-by: Chris Waldon <christopher.waldon.dev@gmail.com>
This commit is contained in:
Chris Waldon 2021-05-31 16:11:30 -04:00
parent ff2a63c99a
commit f8a0df591f
No known key found for this signature in database
GPG Key ID: 35BBC7C073F5A5D3
1 changed files with 1 additions and 1 deletions

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);
}
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);
}