diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-10-07 21:12:28 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-10-07 21:12:28 (GMT) |
commit | f0fc174cdd270eb2ebafeae7971969ffa0431f9a (patch) | |
tree | b1fcbca0ad1df966064232ffa6b466907d9a2b6e /bin | |
parent | dad6c778d56e7eb0fe7a540ae5a8e66de417447b (diff) | |
download | hdf5-f0fc174cdd270eb2ebafeae7971969ffa0431f9a.zip hdf5-f0fc174cdd270eb2ebafeae7971969ffa0431f9a.tar.gz hdf5-f0fc174cdd270eb2ebafeae7971969ffa0431f9a.tar.bz2 |
[svn-r7570] Purpose:
Bug fix/ Update
Description:
Added "void**" type to trace file (set to "x").
Fixed dependencies so that it closes the DEPEND and NEW file handles.
Platforms tested:
Linux (small fix)
Misc. update:
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dependencies | 3 | ||||
-rwxr-xr-x | bin/trace | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/bin/dependencies b/bin/dependencies index 0575b45..f653708 100755 --- a/bin/dependencies +++ b/bin/dependencies @@ -46,4 +46,7 @@ while (<DEPEND>) { print NEW $_; } +close(DEPEND); +close(NEW); + `mv $new_depend_file $depend_file`; @@ -63,6 +63,7 @@ $Source = ""; "H5T_class_t" => "Tt", "H5T_str_t" => "Tz", "void*" => "x", + "void**" => "x", "FILE*" => "x", "H5A_operator_t" => "x", "H5D_operator_t" => "x", |