* src/native/jni.c (_Jv_JNI_FatalError): Changed error message.
authortwisti <none@none>
Thu, 7 Jun 2007 21:52:21 +0000 (21:52 +0000)
committertwisti <none@none>
Thu, 7 Jun 2007 21:52:21 +0000 (21:52 +0000)
src/native/jni.c

index f70fb02c77b4b592770b72f86807f90a724f53bd..6f6529d9ea76c543213b4960d5fb8c0dd224b9c1 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: jni.c 7926 2007-05-21 08:27:06Z twisti $
+   $Id: jni.c 8045 2007-06-07 21:52:21Z twisti $
 
 */
 
@@ -1471,7 +1471,7 @@ void _Jv_JNI_FatalError(JNIEnv *env, const char *msg)
 
        /* this seems to be the best way */
 
-       vm_abort(msg);
+       vm_abort("JNI Fatal error: %s", msg);
 }