diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-07-26 02:55:47 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-07-26 02:55:47 (GMT) |
commit | 0d22a663df367ada055cb3695186c669e1dd6d5e (patch) | |
tree | 9a3c6588411b63b90ec5d86f65032c0f373eb4e2 /perform | |
parent | b4b2b55d33be1c4f1c33aaf58294281a93b7da39 (diff) | |
download | hdf5-0d22a663df367ada055cb3695186c669e1dd6d5e.zip hdf5-0d22a663df367ada055cb3695186c669e1dd6d5e.tar.gz hdf5-0d22a663df367ada055cb3695186c669e1dd6d5e.tar.bz2 |
[svn-r7265] *** empty log message ***
Diffstat (limited to 'perform')
-rw-r--r-- | perform/overhead.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/overhead.c b/perform/overhead.c index 0066255..2b4e620 100644 --- a/perform/overhead.c +++ b/perform/overhead.c @@ -165,7 +165,7 @@ static herr_t display_error_cb (void UNUSED *client_data) { puts ("*FAILED*"); - H5Eprint (stdout); + H5Eprint (H5E_DEFAULT, stdout); return 0; } @@ -370,7 +370,7 @@ main(int argc, char *argv[]) int i, j, nerrors=0; /* Default split ratios */ - H5Eset_auto(display_error_cb, NULL); + H5Eset_auto(H5E_DEFAULT, display_error_cb, NULL); if ((xfer=H5Pcreate(H5P_DATASET_XFER))<0) goto error; if (H5Pget_btree_ratios(xfer, splits+0, splits+1, splits+2)<0) { goto error; |