summaryrefslogtreecommitdiffstats
path: root/src/native
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-06-17 01:15:13 +0200
committerSven Gothel <[email protected]>2014-06-17 01:15:13 +0200
commit56a22f2937c334320637557ef6cd9b38c4b03022 (patch)
treef83757cbd381e46c3604571885a059801fbc9d50 /src/native
parentd3e2cd6432b3383d4589350d60170e02db469343 (diff)
Minor edits: space, final qualifier; setenv-build-*: Add generic JDK location
Diffstat (limited to 'src/native')
-rw-r--r--src/native/common/JVMUtil.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/native/common/JVMUtil.c b/src/native/common/JVMUtil.c
index 28ef209..6df2aff 100644
--- a/src/native/common/JVMUtil.c
+++ b/src/native/common/JVMUtil.c
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright (c) 2014 JogAmp Community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -48,6 +49,6 @@ Java_jogamp_common_jvm_JVMUtil_initialize(JNIEnv *env, jclass _unused, jobject n
if (nioBuffer != NULL) {
ptr = (void *) (*env)->GetDirectBufferAddress(env, nioBuffer);
}
- return ( NULL==ptr ) ? JNI_FALSE : JNI_TRUE ;
+ return NULL != ptr ? JNI_TRUE : JNI_FALSE;
}