diff options
Diffstat (limited to 'tools/h5jam/h5jam.c')
-rw-r--r-- | tools/h5jam/h5jam.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tools/h5jam/h5jam.c b/tools/h5jam/h5jam.c index f5cdfe0..cc64bd3 100644 --- a/tools/h5jam/h5jam.c +++ b/tools/h5jam/h5jam.c @@ -175,13 +175,8 @@ main (int argc, const char *argv[]) int res; /* Disable error reporting */ -#ifdef H5_WANT_H5_V1_6_COMPAT - H5Eget_auto(&func, &edata); - H5Eset_auto(NULL, NULL); -#else /* H5_WANT_H5_V1_6_COMPAT */ - H5Eget_auto (H5E_DEFAULT, &func, &edata); - H5Eset_auto (H5E_DEFAULT, NULL, NULL); -#endif /* H5_WANT_H5_V1_6_COMPAT */ + H5Eget_auto_stack (H5E_DEFAULT, &func, &edata); + H5Eset_auto_stack (H5E_DEFAULT, NULL, NULL); parse_command_line (argc, argv); |