diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-04-12 21:41:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-04-12 21:41:23 (GMT) |
commit | 6151c1cd90aff639f66de06ec419cf49e49581de (patch) | |
tree | 2b744bdd17dc108d4bc212238c1df580796c88c4 /src/H5E.c | |
parent | c8f12172f17ee14b024e5367c57fad83183d7ed5 (diff) | |
download | hdf5-6151c1cd90aff639f66de06ec419cf49e49581de.zip hdf5-6151c1cd90aff639f66de06ec419cf49e49581de.tar.gz hdf5-6151c1cd90aff639f66de06ec419cf49e49581de.tar.bz2 |
[svn-r13650] Description:
Clean up problems from error handling API changes in parallel and
threadsafe builds.
Tested on:
FreeBSD/64 6.2 (liberty) w/parallel & threadsafe
Diffstat (limited to 'src/H5E.c')
-rw-r--r-- | src/H5E.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -304,7 +304,7 @@ H5E_term_interface(void) * *------------------------------------------------------------------------- */ -static H5E_t * +H5E_t * H5E_get_stack(void) { H5E_t *estack; @@ -321,7 +321,7 @@ H5E_get_stack(void) /* Set the thread-specific info */ estack->nused = 0; estack->new_api = TRUE; - estack->u.func_stack = (H5E_auto2_t)H5Eprint2; + estack->u.func2 = (H5E_auto2_t)H5Eprint2; estack->auto_data = NULL; /* (It's not necessary to release this in this API, it is |