diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2019-05-13 16:34:51 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2019-05-13 16:34:51 (GMT) |
commit | 1d87374f68a28a215878a47e1203711dc95ac716 (patch) | |
tree | 55ae663f4f1a49b786d13c91cca9330584b42335 /java/src/jni/h5pFCPLImp.c | |
parent | 1f934ae2c6e13ca020e489efa0447bc8cc74db09 (diff) | |
parent | 4dfcc225ba98a5ad1bc4283b8eacde0bb6f7484c (diff) | |
download | hdf5-1d87374f68a28a215878a47e1203711dc95ac716.zip hdf5-1d87374f68a28a215878a47e1203711dc95ac716.tar.gz hdf5-1d87374f68a28a215878a47e1203711dc95ac716.tar.bz2 |
Merge pull request #4 in ~VCHOI/my_third_fork from hdf5_1_10 to bugfix/v110_HDFFV-10365-h5sencode-decode-bug-when-num
* commit '4dfcc225ba98a5ad1bc4283b8eacde0bb6f7484c':
Fix Java JUnit-TestH5P failure on 32-bit arch
Added new C++ wrappers - HDFFV-10622
Make the corresponding fix for HDFFV-10579 H5Arename fails when creation order of attributes is tracked.
Diffstat (limited to 'java/src/jni/h5pFCPLImp.c')
-rw-r--r-- | java/src/jni/h5pFCPLImp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/jni/h5pFCPLImp.c b/java/src/jni/h5pFCPLImp.c index 34ac065..cc7c264 100644 --- a/java/src/jni/h5pFCPLImp.c +++ b/java/src/jni/h5pFCPLImp.c @@ -240,7 +240,7 @@ Java_hdf_hdf5lib_H5_H5Pget_1sym_1k done: if (theArray) - UNPIN_LONG_ARRAY(ENVONLY, size, theArray, (status < 0) ? JNI_ABORT : 0); + UNPIN_INT_ARRAY(ENVONLY, size, theArray, (status < 0) ? JNI_ABORT : 0); return (jint)status; } /* end Java_hdf_hdf5lib_H5_H5Pget_1sym_1k */ |