diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2000-03-10 00:41:10 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2000-03-10 00:41:10 (GMT) |
commit | 615522147b5d8ebda23091470ee24f9ea67650c6 (patch) | |
tree | fb62c545611553fe9184e81a5fbc24b610c10248 | |
parent | f18cd7b6bb14c4e69987184c0544e526a3b95276 (diff) | |
download | hdf5-615522147b5d8ebda23091470ee24f9ea67650c6.zip hdf5-615522147b5d8ebda23091470ee24f9ea67650c6.tar.gz hdf5-615522147b5d8ebda23091470ee24f9ea67650c6.tar.bz2 |
[svn-r2020] Fine tuned the declaration of dump_header_format to be "const" consistent.
-rw-r--r-- | tools/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index 5b4f440..01a2690 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -11,7 +11,7 @@ static int unamedtype = 0; /* shared data type with no name */ static int prefix_len = 1024; static char *prefix; static table_t *group_table = NULL, *dset_table = NULL, *type_table = NULL; -static dump_header *dump_header_format; +static const dump_header *dump_header_format; static void dump_group (hid_t , const char* ); |