diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-18 21:21:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-18 21:21:35 (GMT) |
commit | af6276f6543d06c9f18939cc8b810f57397b7a67 (patch) | |
tree | ef2c50b7bd22d0967fdab6075864577746e4b147 /tools | |
parent | d8b08dbc85dfe28d926caf3c03e9d60c63d80794 (diff) | |
download | hdf5-af6276f6543d06c9f18939cc8b810f57397b7a67.zip hdf5-af6276f6543d06c9f18939cc8b810f57397b7a67.tar.gz hdf5-af6276f6543d06c9f18939cc8b810f57397b7a67.tar.bz2 |
[svn-r10628] Purpose:
Code cleanup
Description:
Clean up various warnings reported by the Windows team.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lib/h5diff.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index f018fb5..a13232d 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -156,7 +156,7 @@ h5diff (const char *fname1, const char *fname2, const char *objname1, const char *objname2, diff_opt_t * options) { - int nobjects1, nobjects2, i; + int nobjects1, nobjects2; trav_info_t *info1 = NULL; trav_info_t *info2 = NULL; hid_t file1_id=(-1), file2_id=(-1); @@ -303,6 +303,8 @@ h5diff (const char *fname1, #ifdef H5_HAVE_PARALLEL if(g_Parallel) { + int i; + if( (strlen(fname1) > 1024) || (strlen(fname2) > 1024)) { printf("The parallel diff only supports path names up to 1024 characters\n"); |