diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2006-05-12 18:29:49 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2006-05-12 18:29:49 (GMT) |
commit | cbe0bc01f0b36901ae5b7b0abb5ae1f65a9fef02 (patch) | |
tree | c5a846dc79344aca513399c416b137ab8b1370f4 /src/H5Eprivate.h | |
parent | db31594e6824688b03963fa092761b02d9179296 (diff) | |
download | hdf5-cbe0bc01f0b36901ae5b7b0abb5ae1f65a9fef02.zip hdf5-cbe0bc01f0b36901ae5b7b0abb5ae1f65a9fef02.tar.gz hdf5-cbe0bc01f0b36901ae5b7b0abb5ae1f65a9fef02.tar.bz2 |
[svn-r12345] Purpose: Codes for backward compatibility.
Description: Function prototype H5E_walk_t and structure H5E_error_t wasn't backward
compatible.
Solution: Make them compatible with v1.6 and provide new definitions of H5E_walk_stack_t
and H5E_error_stack_t.
Platforms tested: fuss and h5committest.
Diffstat (limited to 'src/H5Eprivate.h')
-rw-r--r-- | src/H5Eprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Eprivate.h b/src/H5Eprivate.h index 0c99f9f..ff47b8c 100644 --- a/src/H5Eprivate.h +++ b/src/H5Eprivate.h @@ -43,7 +43,7 @@ typedef struct H5E_msg_t { /* Error stack */ typedef struct H5E_t { size_t nused; /* Num slots currently used in stack */ - H5E_error_t slot[H5E_NSLOTS]; /* Array of error records */ + H5E_error_stack_t slot[H5E_NSLOTS]; /* Array of error records */ hbool_t new_api; /* Indicate that the function pointer is for the new (stack) API or the old */ union { H5E_auto_t func; /* Function for 'automatic' error reporting */ |