diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-06-22 13:48:56 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-06-22 13:49:18 (GMT) |
commit | 61d21839269b9e3902cd0a09c3f773ec5f41e280 (patch) | |
tree | 625953eef0ef439ee7ad912762727b758f901e74 /java/src | |
parent | 22ffecbae3a288d044e2776eaf632d8f3c07cb02 (diff) | |
download | hdf5-61d21839269b9e3902cd0a09c3f773ec5f41e280.zip hdf5-61d21839269b9e3902cd0a09c3f773ec5f41e280.tar.gz hdf5-61d21839269b9e3902cd0a09c3f773ec5f41e280.tar.bz2 |
Correct arg references
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/jni/h5pFCPLImp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/jni/h5pFCPLImp.c b/java/src/jni/h5pFCPLImp.c index 0223e12..304623b 100644 --- a/java/src/jni/h5pFCPLImp.c +++ b/java/src/jni/h5pFCPLImp.c @@ -50,9 +50,9 @@ Java_hdf_hdf5lib_H5_H5Pget_1version UNUSED(clss); #ifdef H5_NO_DEPRECATED_SYMBOLS - UNUSED(loc_id); - UNUSED(name); - H5_UNIMPLEMENTED(ENVONLY, "H5Aopen_name: not implemented"); + UNUSED(plist); + UNUSED(version_info); + H5_UNIMPLEMENTED(ENVONLY, "H5Pget_version: not implemented"); #else if (NULL == version_info) H5_NULL_ARGUMENT_ERROR(ENVONLY, "H5Pget_version: version_info input array is NULL"); |