diff options
| author | Larry Knox <lrknox@hdfgroup.org> | 2017-01-21 04:54:11 (GMT) |
|---|---|---|
| committer | Larry Knox <lrknox@hdfgroup.org> | 2017-01-21 04:54:11 (GMT) |
| commit | f5389fb6e97c24ebb1c85652a85810fb2607952c (patch) | |
| tree | bdc554da68650bd480e0bf8532fa18953358171e /java | |
| parent | 95242bbd5ce97f48e94bab11e8f736a60c0f509b (diff) | |
| parent | 7e73366e912920eb374a404653cd7ad026c63970 (diff) | |
| download | hdf5-f5389fb6e97c24ebb1c85652a85810fb2607952c.zip hdf5-f5389fb6e97c24ebb1c85652a85810fb2607952c.tar.gz hdf5-f5389fb6e97c24ebb1c85652a85810fb2607952c.tar.bz2 | |
Merge pull request #257 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '7e73366e912920eb374a404653cd7ad026c63970':
HDFFV-10118 fix data
HDFFV-10118 change h5ls to not display extra info
HDFFV-10118 fixed plugin tests for tools
Diffstat (limited to 'java')
| -rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index 6b2af4b..02d35ba 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -151,7 +151,7 @@ import hdf.hdf5lib.structs.H5O_info_t; * layout of the source and destination, and the data for the array passed as a block of bytes, for instance, * * <pre> - * herr_t H5Dread(int fid, int filetype, int memtype, int memspace, + * herr_t H5Dread(long fid, long filetype, long memtype, long memspace, * void * data); * </pre> * @@ -171,7 +171,7 @@ import hdf.hdf5lib.structs.H5O_info_t; * library. So the function above would be declared: * * <pre> - * public synchronized static native int H5Dread(int fid, int filetype, int memtype, int memspace, Object data); + * public synchronized static native int H5Dread(long fid, long filetype, long memtype, long memspace, Object data); * </pre> * OPEN_IDS.addElement(id); @@ -192,7 +192,7 @@ import hdf.hdf5lib.structs.H5O_info_t; * can be accessed as public variables of the Java class, such as: * * <pre> - * int data_type = HDF5CDataTypes.JH5T_NATIVE_INT; + * long data_type = HDF5CDataTypes.JH5T_NATIVE_INT; * </pre> * * The Java application uses both types of constants the same way, the only difference is that the |
