Commit cba5553a by Richard Henderson Committed by Richard Henderson

* libjava.jni/calls.c (Java_calls_docall): Fix typo.

From-SVN: r44601
parent 0821bff7
2001-08-03 Richard Henderson <rth@redhat.com>
* libjava.jni/calls.c (Java_calls_docall): Fix typo.
2001-08-01 Jeff Sturm <jsturm@one-point.com>
* libjava.lang/KeepInline.java: New file.
......
......@@ -29,7 +29,7 @@ Java_calls_docall (JNIEnv *env, jobject _this)
method = (*env)->GetMethodID (env, klass, "char_f", "(I)C");
val.i = 10;
c = (*env)->CallCharMethodV (env, _this, method, &val);
c = (*env)->CallCharMethodA (env, _this, method, &val);
if (c != ('a' + 10))
++fails;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment