Skip to content

Commit

Permalink
fix missing closing parenthesis in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tshirtman committed May 9, 2020
1 parent c083fce commit 9f8774f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jnius/jnius_jvm_dlopen.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ cdef void create_jnienv() except *:
handle = dlopen(lib_path, RTLD_NOW | RTLD_GLOBAL)

if handle == NULL:
raise SystemError("Error calling dlopen({0}: {1}".format(lib_path, dlerror()))
raise SystemError("Error calling dlopen({0}): {1}".format(lib_path, dlerror()))

cdef void *jniCreateJVM = dlsym(handle, b"JNI_CreateJavaVM")

Expand Down

0 comments on commit 9f8774f

Please sign in to comment.