diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-01-17 18:08:36 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-01-17 18:08:36 (GMT) |
commit | fe1fe98f622febb584cd2270763ede1240d63e8a (patch) | |
tree | 6371d2d193ccc849c42b332171e242c15f519a1d /src/H5Epublic.h | |
parent | dfd0b59ae63ee79c8c135d0c05fe65e77422701c (diff) | |
download | hdf5-fe1fe98f622febb584cd2270763ede1240d63e8a.zip hdf5-fe1fe98f622febb584cd2270763ede1240d63e8a.tar.gz hdf5-fe1fe98f622febb584cd2270763ede1240d63e8a.tar.bz2 |
[svn-r9830] Purpose:
Bug fix
Description:
Fortran and C++ API failed to compile because they need to use
H5E_LEN which was removed.
Solution:
Restored the H5E_LEN definition.
A permenant solution is still needed.
Platforms tested:
H5committested. (heping, sol, and copper all compiled fine again but
sol had an error in testerror.sh which seemed to be a different
problem.
Also tested in tg-NSCA.
Diffstat (limited to 'src/H5Epublic.h')
-rw-r--r-- | src/H5Epublic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h index 1671967..2fc430f 100644 --- a/src/H5Epublic.h +++ b/src/H5Epublic.h @@ -27,6 +27,9 @@ /* Value for the default error stack */ #define H5E_DEFAULT 0 +/* Limit of error strings recorded */ +#define H5E_LEN 128 + /* Different kinds of error information */ typedef enum H5E_type_t { H5E_MAJOR, |