diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-14 16:53:51 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-14 16:53:51 (GMT) |
commit | 20a85b0e236a235b5a46fd02b4e96ea0574a1174 (patch) | |
tree | 827ed355d62a9ccd1b185c95a95ed7c052b699cc /src/H5Tpublic.h | |
parent | 320499b91c6c9745db77c6ab5e45f95d08f15239 (diff) | |
download | hdf5-20a85b0e236a235b5a46fd02b4e96ea0574a1174.zip hdf5-20a85b0e236a235b5a46fd02b4e96ea0574a1174.tar.gz hdf5-20a85b0e236a235b5a46fd02b4e96ea0574a1174.tar.bz2 |
[svn-r7218] Purpose:
Bug fix
Description:
H5T_BKG_TEMP was accidentally removed from library code, but is used by
application's datatype conversion routines.
Solution:
Revert removal of H5T_BKG_TEMP.
Platforms tested:
h5committest
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 8bea043..b9902d1 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -141,7 +141,8 @@ typedef enum H5T_cmd_t { /* How is the `bkg' buffer used by the conversion function? */ typedef enum H5T_bkg_t { H5T_BKG_NO = 0, /*background buffer is not needed, send NULL */ - H5T_BKG_YES = 1 /*init bkg buf with data before conversion */ + H5T_BKG_TEMP = 1, /*bkg buffer used as temp storage only */ + H5T_BKG_YES = 2 /*init bkg buf with data before conversion */ } H5T_bkg_t; /* Type conversion client data */ |