summaryrefslogtreecommitdiffstats
path: root/src/H5B.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-06-18 23:15:53 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-06-18 23:15:53 (GMT)
commit52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d (patch)
tree6936eb62fbc641e43f94fe3ecd1752a24508a594 /src/H5B.c
parentd41b9fffdfca2e97c36bc0ad0899fbb7b055f926 (diff)
downloadhdf5-52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d.zip
hdf5-52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d.tar.gz
hdf5-52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d.tar.bz2
[svn-r4013] Purpose:
POSIX Removal Description: Removed calls to POSIX functions and replaced them with the HD* equivalents. Solution: Did just that. Also had to create two new HD* macros, the gettimeofday() and getrusage() Platforms tested: Linux
Diffstat (limited to 'src/H5B.c')
-rw-r--r--src/H5B.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5B.c b/src/H5B.c
index afa53d9..e907d5c 100644
--- a/src/H5B.c
+++ b/src/H5B.c
@@ -1585,8 +1585,8 @@ H5B_iterate (H5F_t *f, const H5B_class_t *type, haddr_t addr, void *udata)
}
for (i=0; i<bt->nchildren+1; i++) {
if (!bt->key[i].nkey) H5B_decode_key(f, bt, i);
- memcpy(key+i*type->sizeof_nkey, bt->key[i].nkey,
- type->sizeof_nkey);
+ HDmemcpy(key+i*type->sizeof_nkey, bt->key[i].nkey,
+ type->sizeof_nkey);
}
next_addr = bt->right;
nchildren = bt->nchildren;