diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-14 16:55:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-14 16:55:31 (GMT) |
commit | 060f36241e45bed51f569370b9b991cf121bf6f3 (patch) | |
tree | 317a95dcfaf7958505c4527c1ab5314781bdc9f9 /src/H5Tpublic.h | |
parent | 0bcd59f9b802f52c0134ec1a4547e69f99f19ec0 (diff) | |
download | hdf5-060f36241e45bed51f569370b9b991cf121bf6f3.zip hdf5-060f36241e45bed51f569370b9b991cf121bf6f3.tar.gz hdf5-060f36241e45bed51f569370b9b991cf121bf6f3.tar.bz2 |
[svn-r7219] 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 */ |