summaryrefslogtreecommitdiffstats
path: root/src/H5WB.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5WB.c')
-rw-r--r--src/H5WB.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5WB.c b/src/H5WB.c
index 3232305..5754084 100644
--- a/src/H5WB.c
+++ b/src/H5WB.c
@@ -216,7 +216,7 @@ H5WB_actual_clear(H5WB_t *wb, size_t need)
HGOTO_ERROR(H5E_ATTR, H5E_NOSPACE, NULL, "memory allocation failed")
/* Clear the buffer */
- HDmemset(ret_value, 0, need);
+ memset(ret_value, 0, need);
done:
FUNC_LEAVE_NOAPI(ret_value)