diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-18 14:05:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-18 14:05:38 (GMT) |
commit | ef9c40754bdf5b5be1bb92e632da5e17a8d6913c (patch) | |
tree | d7066aba588261134019b8e02f381bf4f84d38ca /tools/h5ls/h5ls.c | |
parent | 139af5a5177697500b022482dddbf218a420d417 (diff) | |
download | hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.zip hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.tar.gz hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.tar.bz2 |
[svn-r5200] Purpose:
Code Cleanup
Description:
Clean up compiler warnings from the last bunch of checkins
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'tools/h5ls/h5ls.c')
-rw-r--r-- | tools/h5ls/h5ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5ls/h5ls.c b/tools/h5ls/h5ls.c index 5fd7df6..35f5f75 100644 --- a/tools/h5ls/h5ls.c +++ b/tools/h5ls/h5ls.c @@ -709,7 +709,7 @@ display_cmpd_type(hid_t type, int ind) char *name=NULL; /*member name */ size_t size; /*total size of type in bytes */ hid_t subtype; /*member data type */ - int i, j, n; /*miscellaneous counters */ + int i, n; /*miscellaneous counters */ if (H5T_COMPOUND!=H5Tget_class(type)) return FALSE; |