Handle `uintptr_t`s better in JNI bindings
authorMatt Corallo <git@bluematt.me>
Wed, 3 Feb 2021 01:28:01 +0000 (20:28 -0500)
committerMatt Corallo <git@bluematt.me>
Wed, 3 Feb 2021 01:50:44 +0000 (20:50 -0500)
This fixes bugs building for 32-bit platforms as the JNI functions
would expect `uintptr_t`s (32-bit) but Java expects a long (64-bit).
We can't just replace them all with int64_ts as we need to have
`uintptr_t`s still in _jcalls functions which we pass function
pointers to C.


No differences found