aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-05-04 02:20:31 +0200
committerSven Gothel <[email protected]>2012-05-04 02:20:31 +0200
commit389035210e6fc7742a2a11575c7bbfc8f08987a5 (patch)
tree1382468cd489ccaa90ef59f97e6ce6e5afb6fe78
parentcc76889a6fe96cffb91c9a3aa7934878c0ecd97e (diff)
Fix commit cc76889a6fe96cffb91c9a3aa7934878c0ecd97e: System.loadLibrary(libraryPath) -> System.load(libraryPath)
-rw-r--r--src/java/com/jogamp/common/jvm/JNILibLoaderBase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/jvm/JNILibLoaderBase.java b/src/java/com/jogamp/common/jvm/JNILibLoaderBase.java
index 94bc7e7..b15b1e0 100644
--- a/src/java/com/jogamp/common/jvm/JNILibLoaderBase.java
+++ b/src/java/com/jogamp/common/jvm/JNILibLoaderBase.java
@@ -344,7 +344,7 @@ public class JNILibLoaderBase {
if(DEBUG) {
System.err.println(" -> System.load("+libraryPath+")");
}
- System.loadLibrary(libraryPath);
+ System.load(libraryPath);
} else {
if(DEBUG) {
System.err.println(" -> System.loadLibrary("+libraryName+")");