Skip to content

Commit

Permalink
no comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danking committed Feb 15, 2019
1 parent 4a91e10 commit 7caf515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hail/src/main/c/NativeBoot.cpp
Expand Up @@ -5,7 +5,7 @@

NATIVEMETHOD(jlong, NativeCode, dlopenGlobal)(
JNIEnv* env,
jobject /*thisJ*/,
jobject,
jstring dllPathJ
) {
const char* dll_path = env->GetStringUTFChars(dllPathJ, 0);
Expand All @@ -20,7 +20,7 @@ NATIVEMETHOD(jlong, NativeCode, dlopenGlobal)(

NATIVEMETHOD(jlong, NativeCode, dlclose)(
JNIEnv*,
jobject /*thisJ*/,
jobject,
jlong handle
) {
jlong result = dlclose(reinterpret_cast<void*>(handle));
Expand Down

0 comments on commit 7caf515

Please sign in to comment.