diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-04-23 05:06:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-04-23 05:06:20 (GMT) |
commit | fad680156919cf7261a8c1833fc5efdd3346cc11 (patch) | |
tree | 2d0bc9e66ec7ace6bb163b8d3e49254a272a2588 /src/H5Tpublic.h | |
parent | 562cdc22ffd0a32a4b7ce105cb4c2878ac342c05 (diff) | |
download | hdf5-fad680156919cf7261a8c1833fc5efdd3346cc11.zip hdf5-fad680156919cf7261a8c1833fc5efdd3346cc11.tar.gz hdf5-fad680156919cf7261a8c1833fc5efdd3346cc11.tar.bz2 |
[svn-r8412] Purpose:
Code cleanup
Description:
Run lint on module
Platforms tested:
PC-Lint
Too minor to require h5committest
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 13c8a33..442407f 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -485,8 +485,8 @@ H5_DLL herr_t H5Tpack(hid_t type_id); /* Operations defined on enumeration datatypes */ H5_DLL hid_t H5Tenum_create(hid_t base_id); -H5_DLL herr_t H5Tenum_insert(hid_t type, const char *name, void *value); -H5_DLL herr_t H5Tenum_nameof(hid_t type, void *value, char *name/*out*/, +H5_DLL herr_t H5Tenum_insert(hid_t type, const char *name, const void *value); +H5_DLL herr_t H5Tenum_nameof(hid_t type, const void *value, char *name/*out*/, size_t size); H5_DLL herr_t H5Tenum_valueof(hid_t type, const char *name, void *value/*out*/); |