mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
fix thinko in CallLongMethodV
This commit is contained in:
parent
9a13df3024
commit
81dde8bdbb
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user