summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/gluegen
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-06-25 07:40:38 +0200
committerSven Gothel <[email protected]>2023-06-25 07:40:38 +0200
commit12ed5d03a26997c185474e992ad93ec99ec3baa1 (patch)
tree31a64cec96263ebb0a30490e7654fdc47f05da49 /src/java/com/jogamp/gluegen
parent7a4a0aea28729eabf1d44f58b0cfa4255f160992 (diff)
GlueGen Fix ProcAddressCMethodBindingEmitter.jniMangle(..) override: Use renamed {jniMangle->getJNIMangledArg}(..)
Diffstat (limited to 'src/java/com/jogamp/gluegen')
-rw-r--r--src/java/com/jogamp/gluegen/procaddress/ProcAddressCMethodBindingEmitter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/procaddress/ProcAddressCMethodBindingEmitter.java b/src/java/com/jogamp/gluegen/procaddress/ProcAddressCMethodBindingEmitter.java
index 3bca7fe..bbeebfa 100644
--- a/src/java/com/jogamp/gluegen/procaddress/ProcAddressCMethodBindingEmitter.java
+++ b/src/java/com/jogamp/gluegen/procaddress/ProcAddressCMethodBindingEmitter.java
@@ -224,7 +224,7 @@ public class ProcAddressCMethodBindingEmitter extends CMethodBindingEmitter {
protected String jniMangle(final MethodBinding binding) {
final StringBuilder buf = new StringBuilder(super.jniMangle(binding));
if (callThroughProcAddress) {
- jniMangle(Long.TYPE, buf, false); // to account for the additional _addr_ parameter
+ getJNIMangledArg(Long.TYPE, buf, false); // to account for the additional _addr_ parameter
}
return buf.toString();
}