diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-11 18:06:51 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-11 18:06:51 (GMT) |
commit | 01e9075358e6b1212d45dd13613203110c8f5373 (patch) | |
tree | 639d65504feb70e8c74fbb3ee4cef050b7b60197 /src/H5Dprivate.h | |
parent | 2c92c3ca18ca65ee0bf1e02235ba668808d39030 (diff) | |
download | hdf5-01e9075358e6b1212d45dd13613203110c8f5373.zip hdf5-01e9075358e6b1212d45dd13613203110c8f5373.tar.gz hdf5-01e9075358e6b1212d45dd13613203110c8f5373.tar.bz2 |
[svn-r7211] Purpose:
Code cleanup
Description:
Various code cleanups suggested by lint tool
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index 9b0191c..ac8df08 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -46,7 +46,7 @@ #define H5D_CRT_CHUNK_SIZE_NAME "chunk_size" #define H5D_CRT_CHUNK_SIZE_SIZE sizeof(hsize_t[H5O_LAYOUT_NDIMS]) #define H5D_CRT_CHUNK_SIZE_DEF {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\ - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1} + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1} /* Definitions for fill value. size=0 means fill value will be 0 as * library default; size=-1 means fill value is undefined. */ #define H5D_CRT_FILL_VALUE_NAME "fill_value" @@ -149,7 +149,7 @@ H5_DLL herr_t H5D_init(void); H5_DLL hid_t H5D_open(H5G_entry_t *ent, hid_t dxpl_id); H5_DLL htri_t H5D_isa(H5G_entry_t *ent, hid_t dxpl_id); H5_DLL H5G_entry_t *H5D_entof(H5D_t *dataset); -H5_DLL H5T_t *H5D_typeof(H5D_t *dset); +H5_DLL H5T_t *H5D_typeof(const H5D_t *dset); H5_DLL herr_t H5D_crt_copy(hid_t new_plist_t, hid_t old_plist_t, void *copy_data); H5_DLL herr_t H5D_crt_close(hid_t dxpl_id, void *close_data); |