Correct name of native function

This commit is contained in:
Allen Byrne 2017-04-24 16:21:42 -05:00
parent c148ad90f0
commit 0fb5ce7ad5

View File

@ -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;