diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-02-24 15:53:42 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-02-24 15:53:42 (GMT) |
commit | 67a1e576db7e4e1075b3f181fe40abff8c73b095 (patch) | |
tree | a4d3e7cc015480073db8bc566fc33c0766519f53 /tools/misc/h5debug.c | |
parent | 827cbbba318e64d81c60647c815c46d18dc529e1 (diff) | |
download | hdf5-67a1e576db7e4e1075b3f181fe40abff8c73b095.zip hdf5-67a1e576db7e4e1075b3f181fe40abff8c73b095.tar.gz hdf5-67a1e576db7e4e1075b3f181fe40abff8c73b095.tar.bz2 |
[svn-r21983] Correct HD prefix in tools
Checked for HD support.
Diffstat (limited to 'tools/misc/h5debug.c')
-rw-r--r-- | tools/misc/h5debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c index 021cfcd..30d5d3b 100644 --- a/tools/misc/h5debug.c +++ b/tools/misc/h5debug.c @@ -246,7 +246,7 @@ main(int argc, char *argv[]) HDfprintf(stderr, "cannot create file access property list\n"); HDexit(1); } /* end if */ - if(strchr(argv[1], '%')) + if(HDstrchr(argv[1], '%')) H5Pset_fapl_family (fapl, (hsize_t)0, H5P_DEFAULT); if((fid = H5Fopen(argv[1], H5F_ACC_RDONLY, fapl)) < 0) { HDfprintf(stderr, "cannot open file\n"); |