diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-24 17:01:50 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-24 17:01:50 (GMT) |
commit | 459550ed9c0053e40bb5f2632ef83f9f4795c986 (patch) | |
tree | 164d7725f2b867286654ffcb634572b5d51dd462 /tools | |
parent | c96d841efa7f9ac753a1b801432b6f541470e06e (diff) | |
download | hdf5-459550ed9c0053e40bb5f2632ef83f9f4795c986.zip hdf5-459550ed9c0053e40bb5f2632ef83f9f4795c986.tar.gz hdf5-459550ed9c0053e40bb5f2632ef83f9f4795c986.tar.bz2 |
[svn-r1989] removed the variable for the attribute that I didn't need.
Diffstat (limited to 'tools')
-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 93b6c4b..ba97a56 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -1041,7 +1041,7 @@ dump_data (hid_t obj_id, int obj_data) { int status = -1; void *buf; char *attr_name = malloc(sizeof(char)*80); - hid_t attr, space, type, p_type; + hid_t space, type, p_type; int ndims, i; hsize_t size[64], nelmts = 1; int depth; |