diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-02-24 14:27:57 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-02-24 14:27:57 (GMT) |
commit | 944f2cdf8d7f3d665ac9e72fe2267826e8abb047 (patch) | |
tree | 174208cdb4d09a569f111fee490eee8009dbb93a /tools/lib/h5diff_util.c | |
parent | b2ec30bfe350f37fcd69d97f8a7cdd7367d06b6a (diff) | |
download | hdf5-944f2cdf8d7f3d665ac9e72fe2267826e8abb047.zip hdf5-944f2cdf8d7f3d665ac9e72fe2267826e8abb047.tar.gz hdf5-944f2cdf8d7f3d665ac9e72fe2267826e8abb047.tar.bz2 |
[svn-r21979] Correct HD prefix in tools for strlen and memcpy
Checked for HD support.
Diffstat (limited to 'tools/lib/h5diff_util.c')
-rw-r--r-- | tools/lib/h5diff_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_util.c b/tools/lib/h5diff_util.c index dfdc8b3..0d476b6 100644 --- a/tools/lib/h5diff_util.c +++ b/tools/lib/h5diff_util.c @@ -183,7 +183,7 @@ diff_basename(const char *name) return NULL; /* Find the end of the base name */ - i = strlen(name); + i = HDstrlen(name); while (i>0 && '/'==name[i-1]) --i; |