diff options
author | Ruey-Hsia Li <rli@ncsa.uiuc.edu> | 1998-08-21 17:22:14 (GMT) |
---|---|---|
committer | Ruey-Hsia Li <rli@ncsa.uiuc.edu> | 1998-08-21 17:22:14 (GMT) |
commit | 4f2d4020d86c5a0079164fdc1c26d24b5b0bccb5 (patch) | |
tree | 91ae04cd92e07b44a716c16fa627266d4a640b79 | |
parent | 278a9b948652a4a91819b643d59d9949ac19b733 (diff) | |
download | hdf5-4f2d4020d86c5a0079164fdc1c26d24b5b0bccb5.zip hdf5-4f2d4020d86c5a0079164fdc1c26d24b5b0bccb5.tar.gz hdf5-4f2d4020d86c5a0079164fdc1c26d24b5b0bccb5.tar.bz2 |
[svn-r611] Removed warning messages during compilation.
-rw-r--r-- | tools/h5dump.c | 5 | ||||
-rw-r--r-- | tools/h5dump.h | 6 | ||||
-rw-r--r-- | tools/h5dumputil.c | 1 |
3 files changed, 5 insertions, 7 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index a8a0a81..5901c09 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -1,3 +1,4 @@ +#include <H5private.h> #include <h5dump.h> static int indent = 0; @@ -21,8 +22,8 @@ usage() printf("Usage: dumper <filename>\n"); /* - printf(" Usage: h5dumper [OPTIONS] <file>\n"); - printf(" OPTIONS\n"); + printf(" Usage: h5dumper [options] <file>\n"); + printf(" options\n"); printf(" -H Print a usage message \n"); printf(" -nobb No boot block\n"); printf(" -nodata No data\n"); diff --git a/tools/h5dump.h b/tools/h5dump.h index d537390..e7f5863 100644 --- a/tools/h5dump.h +++ b/tools/h5dump.h @@ -1,9 +1,7 @@ -#ifndef _DUMPER_H -#define _DUMPER_H +#ifndef _H5DUMP_H +#define _H5DUMP_H #include <hdf5.h> -#include <H5private.h> -#include <h5tools.h> #define BOOT_BLOCK "BOOT_BLOCK" #define GROUP "GROUP" diff --git a/tools/h5dumputil.c b/tools/h5dumputil.c index d0b3847..79ccb7d 100644 --- a/tools/h5dumputil.c +++ b/tools/h5dumputil.c @@ -4,7 +4,6 @@ #include <assert.h> #include <ctype.h> #include <h5dump.h> -#include <hdf5.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |