fix thinko in CallLongMethodV

This commit is contained in:
Joel Dice 2008-01-17 17:56:55 -07:00
parent 9a13df3024
commit 81dde8bdbb

View File

@ -440,7 +440,7 @@ CallLongMethodV(Thread* t, jobject o, jmethodID m, va_list a)
ENTER(t, Thread::ActiveState);
object r = t->m->processor->invokeList(t, getMethod(t, *o, m), *o, true, a);
return (t->exception ? 0 : intValue(t, r));
return (t->exception ? 0 : longValue(t, r));
}
jlong JNICALL