diff options
author | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2004-10-08 21:29:26 (GMT) |
---|---|---|
committer | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2004-10-08 21:29:26 (GMT) |
commit | 8e44c1116e3a517ad8765fd8d27b33f516d6b3e2 (patch) | |
tree | 23d54ddf6926082eff06ee28c26007b10e102c21 /tools/h5jam/h5jam.c | |
parent | f9b46c13318cb8634ea28d30daecd6049af90314 (diff) | |
download | hdf5-8e44c1116e3a517ad8765fd8d27b33f516d6b3e2.zip hdf5-8e44c1116e3a517ad8765fd8d27b33f516d6b3e2.tar.gz hdf5-8e44c1116e3a517ad8765fd8d27b33f516d6b3e2.tar.bz2 |
[svn-r9383] Purpose:
Putting 'h5jam' in the 1.6 branch
Description:
Solution:
Platforms tested:
verbena, arabica, cobalt
Misc. update:
Diffstat (limited to 'tools/h5jam/h5jam.c')
-rw-r--r-- | tools/h5jam/h5jam.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5jam/h5jam.c b/tools/h5jam/h5jam.c index d78e28c..487a0a4 100644 --- a/tools/h5jam/h5jam.c +++ b/tools/h5jam/h5jam.c @@ -159,7 +159,7 @@ main (int argc, const char *argv[]) int h5fid; int ofid; void *edata; - H5E_auto_stack_t func; + H5E_auto_t func; hid_t ifile; hid_t plist; herr_t status; @@ -175,8 +175,8 @@ main (int argc, const char *argv[]) int res; /* 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); |