Correct name of native function

This commit is contained in:
Allen Byrne 2017-04-24 16:21:02 -05:00
parent 2599c23164
commit 539f252fc8

View File

@ -212,7 +212,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;