diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-28 06:31:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-28 06:31:28 (GMT) |
commit | 8ee361f185a8e95e1b7665703946796438ba5237 (patch) | |
tree | acd5afc178e555b9ac0347b11be3e505c663531f /test/ttsafe_error.c | |
parent | 50dd616eb5fda775d3b283be14229698eb937df2 (diff) | |
download | hdf5-8ee361f185a8e95e1b7665703946796438ba5237.zip hdf5-8ee361f185a8e95e1b7665703946796438ba5237.tar.gz hdf5-8ee361f185a8e95e1b7665703946796438ba5237.tar.bz2 |
Move all callback-related routines into the callback source file, standardizing
their coding style
Diffstat (limited to 'test/ttsafe_error.c')
-rw-r--r-- | test/ttsafe_error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ttsafe_error.c b/test/ttsafe_error.c index e04ddf3..ddee1af 100644 --- a/test/ttsafe_error.c +++ b/test/ttsafe_error.c @@ -74,7 +74,7 @@ tts_error(void) expected_g[0].min_num = H5E_CANTINIT; expected_g[1].maj_num = H5E_VOL; - expected_g[1].min_num = H5E_CANTINIT; + expected_g[1].min_num = H5E_CANTCREATE; expected_g[2].maj_num = H5E_DATASET; expected_g[2].min_num = H5E_CANTINIT; @@ -121,7 +121,7 @@ tts_error(void) H5TS_wait_for_thread(threads[i]); if (error_flag_g) { - TestErrPrintf("At least one thread reported a value that was different from the exected value\n"); + TestErrPrintf("At least one thread reported a value that was different from the expected value\n"); HDprintf("(Update this test if the error stack changed!)\n"); } |