diff options
Diffstat (limited to 'tools/h5jam/tellub.c')
-rw-r--r-- | tools/h5jam/tellub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5jam/tellub.c b/tools/h5jam/tellub.c index ab88f4d..3b21aff 100644 --- a/tools/h5jam/tellub.c +++ b/tools/h5jam/tellub.c @@ -127,7 +127,7 @@ main (int argc, const char *argv[]) { char *ifname; void *edata; - H5E_auto_stack_t func; + H5E_auto_t func; hid_t ifile; hsize_t usize; htri_t testval; @@ -135,8 +135,8 @@ main (int argc, const char *argv[]) hid_t plist; /* Disable error reporting */ - H5Eget_auto_stack(H5E_DEFAULT, &func, &edata); - H5Eset_auto_stack(H5E_DEFAULT, NULL, NULL); + H5Eget_auto(&func, &edata); + H5Eset_auto(NULL, NULL); parse_command_line (argc, argv); |