From: Christian Thalinger Date: Mon, 9 Jun 2008 15:34:41 +0000 (+0200) Subject: * src/native/jni.c (_Jv_JNI_GetEnv): Renamed to jni_GetEnv. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=d62965666f68a5f7ed3b945984f753852d566296;p=cacao.git * src/native/jni.c (_Jv_JNI_GetEnv): Renamed to jni_GetEnv. --- diff --git a/src/native/jni.c b/src/native/jni.c index 2a7e3d71a..392126e17 100644 --- a/src/native/jni.c +++ b/src/native/jni.c @@ -3933,9 +3933,9 @@ jint _Jv_JNI_DetachCurrentThread(JavaVM *vm) *******************************************************************************/ -jint _Jv_JNI_GetEnv(JavaVM *vm, void **env, jint version) +jint jni_GetEnv(JavaVM *vm, void **env, jint version) { - TRACEJNICALLS(("_Jv_JNI_GetEnv(vm=%p, env=%p, %d=version)", vm, env, version)); + TRACEJNICALLS(("jni_GetEnv(vm=%p, env=%p, version=%d)", vm, env, version)); if (vm_created == false) { *env = NULL; @@ -4012,7 +4012,7 @@ const struct JNIInvokeInterface_ _Jv_JNIInvokeInterface = { _Jv_JNI_DestroyJavaVM, _Jv_JNI_AttachCurrentThread, _Jv_JNI_DetachCurrentThread, - _Jv_JNI_GetEnv, + jni_GetEnv, _Jv_JNI_AttachCurrentThreadAsDaemon };