diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-09-08 14:48:58 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-09-08 14:48:58 (GMT) |
commit | 7570de4e351cb4c5528419763006cae0154fb788 (patch) | |
tree | cc99af2a688efa60e190646870f05cf4f525f448 /test | |
parent | 7163f6d622db8cc8517704a936c45019c3eb1f9d (diff) | |
download | hdf5-7570de4e351cb4c5528419763006cae0154fb788.zip hdf5-7570de4e351cb4c5528419763006cae0154fb788.tar.gz hdf5-7570de4e351cb4c5528419763006cae0154fb788.tar.bz2 |
[svn-r9221] Purpose: Bug fix
Description: One place was left out for update after the Error API was modified.
Changed it from H5Eset_auto to H5Eset_auto_stack.
Platforms tested: sleipnir(with threadsafe) - simple change.
Diffstat (limited to 'test')
-rw-r--r-- | test/ttsafe_error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ttsafe_error.c b/test/ttsafe_error.c index a946a40..7e5eb64 100644 --- a/test/ttsafe_error.c +++ b/test/ttsafe_error.c @@ -195,7 +195,7 @@ void *tts_error_thread(void UNUSED *arg) #ifdef H5_WANT_H5_V1_6_COMPAT H5Eset_auto(old_error_cb, old_error_client_data); #else /*H5_WANT_H5_V1_6_COMPAT*/ - H5Eset_auto(H5E_DEFAULT, old_error_cb, old_error_client_data); + H5Eset_auto_stack(H5E_DEFAULT, old_error_cb, old_error_client_data); #endif /* H5_WANT_H5_V1_6_COMPAT */ return NULL; |