fix cut-and-paste error in jnienv.cpp

release0 should call release, not acquire.
This commit is contained in:
Joel Dice 2011-02-01 14:23:53 -07:00
parent 78a80534e6
commit 132f188ff0

View File

@ -2212,7 +2212,7 @@ MonitorEnter(Thread* t, jobject o)
void
release0(Thread* t, object o)
{
return acquire(t, o);
return release(t, o);
}
jint JNICALL