diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-09 18:14:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-09 18:14:29 (GMT) |
commit | 221c1ef220b49d46fa05ff267f11445f6d1a8b44 (patch) | |
tree | 8c149620212ac2aa4e1720f3041df772e92b004b /tools/misc | |
parent | 8fa8de23607024742549938250c4628da4958909 (diff) | |
download | hdf5-221c1ef220b49d46fa05ff267f11445f6d1a8b44.zip hdf5-221c1ef220b49d46fa05ff267f11445f6d1a8b44.tar.gz hdf5-221c1ef220b49d46fa05ff267f11445f6d1a8b44.tar.bz2 |
[svn-r7191] Purpose:
Code cleanup
Description:
Track new "debug" modules for library.
Platforms tested:
h5committested
Diffstat (limited to 'tools/misc')
-rw-r--r-- | tools/misc/Dependencies | 36 | ||||
-rw-r--r-- | tools/misc/h5debug.c | 6 |
2 files changed, 21 insertions, 21 deletions
diff --git a/tools/misc/Dependencies b/tools/misc/Dependencies index 56c4157..0a4086d 100644 --- a/tools/misc/Dependencies +++ b/tools/misc/Dependencies @@ -9,39 +9,39 @@ h5debug.lo: \ $(top_srcdir)/src/H5api_adpt.h \ $(top_srcdir)/src/H5MPprivate.h \ $(top_srcdir)/src/H5FSprivate.h \ - $(top_srcdir)/src/H5Iprivate.h \ - $(top_srcdir)/src/H5Ipublic.h \ $(top_srcdir)/src/H5Bprivate.h \ $(top_srcdir)/src/H5Bpublic.h \ $(top_srcdir)/src/H5ACprivate.h \ $(top_srcdir)/src/H5ACpublic.h \ $(top_srcdir)/src/H5Fprivate.h \ $(top_srcdir)/src/H5Fpublic.h \ + $(top_srcdir)/src/H5Ipublic.h \ $(top_srcdir)/src/H5FDpublic.h \ - $(top_srcdir)/src/H5Pprivate.h \ - $(top_srcdir)/src/H5Ppublic.h \ - $(top_srcdir)/src/H5Dpublic.h \ - $(top_srcdir)/src/H5MMpublic.h \ - $(top_srcdir)/src/H5Zpublic.h \ + $(top_srcdir)/src/H5Fpkg.h \ + $(top_srcdir)/src/H5FOprivate.h \ + $(top_srcdir)/src/H5TBprivate.h \ + $(top_srcdir)/src/H5Gprivate.h \ + $(top_srcdir)/src/H5Gpublic.h \ + $(top_srcdir)/src/H5RSprivate.h \ + $(top_srcdir)/src/H5HGprivate.h \ + $(top_srcdir)/src/H5HGpublic.h \ + $(top_srcdir)/src/H5HLprivate.h \ + $(top_srcdir)/src/H5HLpublic.h \ + $(top_srcdir)/src/H5Iprivate.h \ + $(top_srcdir)/src/H5Opkg.h \ $(top_srcdir)/src/H5Oprivate.h \ $(top_srcdir)/src/H5Opublic.h \ + $(top_srcdir)/src/H5Dpublic.h \ $(top_srcdir)/src/H5Spublic.h \ - $(top_srcdir)/src/H5HGprivate.h \ - $(top_srcdir)/src/H5HGpublic.h \ $(top_srcdir)/src/H5Tprivate.h \ $(top_srcdir)/src/H5Tpublic.h \ - $(top_srcdir)/src/H5Gprivate.h \ - $(top_srcdir)/src/H5Gpublic.h \ - $(top_srcdir)/src/H5RSprivate.h \ $(top_srcdir)/src/H5Rprivate.h \ $(top_srcdir)/src/H5Rpublic.h \ $(top_srcdir)/src/H5Zprivate.h \ - $(top_srcdir)/src/H5Fpkg.h \ - $(top_srcdir)/src/H5FOprivate.h \ - $(top_srcdir)/src/H5TBprivate.h \ - $(top_srcdir)/src/H5HLprivate.h \ - $(top_srcdir)/src/H5HLpublic.h \ - $(top_srcdir)/src/H5Opkg.h \ + $(top_srcdir)/src/H5Zpublic.h \ + $(top_srcdir)/src/H5Pprivate.h \ + $(top_srcdir)/src/H5Ppublic.h \ + $(top_srcdir)/src/H5MMpublic.h \ $(top_srcdir)/src/H5FDfamily.h h5createU8.lo: \ $(srcdir)/h5createU8.c \ diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c index a27a4db..3643b25 100644 --- a/tools/misc/h5debug.c +++ b/tools/misc/h5debug.c @@ -28,14 +28,14 @@ #define H5O_PACKAGE /*suppress error about including H5Opkg */ #include "H5private.h" -#include "H5Iprivate.h" #include "H5Bprivate.h" -#include "H5Pprivate.h" #include "H5Fpkg.h" #include "H5Gprivate.h" #include "H5HGprivate.h" #include "H5HLprivate.h" +#include "H5Iprivate.h" #include "H5Opkg.h" +#include "H5Pprivate.h" /* File drivers */ #include "H5FDfamily.h" @@ -128,7 +128,7 @@ main(int argc, char *argv[]) /* * Debug the boot block. */ - status = H5F_debug(f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL); + status = H5F_debug(f, H5P_DATASET_XFER_DEFAULT, stdout, 0, VCOL); } else if (!HDmemcmp(sig, H5HL_MAGIC, H5HL_SIZEOF_MAGIC)) { /* |