diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-04-24 21:21:42 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-04-24 21:21:42 (GMT) |
commit | 0fb5ce7ad50664f800ffe7e107e0fb0f90f66e12 (patch) | |
tree | c8c6ad68accf6a903f20098b15565311d4b919fb /java/src/jni/h5plImp.c | |
parent | c148ad90f0604e67065a1a82a0ade72984672173 (diff) | |
download | hdf5-0fb5ce7ad50664f800ffe7e107e0fb0f90f66e12.zip hdf5-0fb5ce7ad50664f800ffe7e107e0fb0f90f66e12.tar.gz hdf5-0fb5ce7ad50664f800ffe7e107e0fb0f90f66e12.tar.bz2 |
Correct name of native function
Diffstat (limited to 'java/src/jni/h5plImp.c')
-rw-r--r-- | java/src/jni/h5plImp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/jni/h5plImp.c b/java/src/jni/h5plImp.c index 322d5d1..9b6100e 100644 --- a/java/src/jni/h5plImp.c +++ b/java/src/jni/h5plImp.c @@ -214,7 +214,7 @@ Java_hdf_hdf5lib_H5_H5PLsize (JNIEnv *env, jclass clss) { unsigned int listsize = 0; - if (H5PLget_loading_state(&listsize) < 0) { + if (H5PLsize(&listsize) < 0) { h5libraryError(env); } return (jint)listsize; |