summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index a51a3c2..cb7c7cd 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -869,19 +869,19 @@ H5AC_debug(H5F_t __unused__ *f)
switch (i) {
case H5AC_BT_ID:
- strcpy(s, "B-tree nodes");
+ HDstrcpy(s, "B-tree nodes");
break;
case H5AC_SNODE_ID:
- strcpy(s, "symbol table nodes");
+ HDstrcpy(s, "symbol table nodes");
break;
case H5AC_LHEAP_ID:
- strcpy (s, "local heaps");
+ HDstrcpy (s, "local heaps");
break;
case H5AC_GHEAP_ID:
- strcpy (s, "global heaps");
+ HDstrcpy (s, "global heaps");
break;
case H5AC_OHDR_ID:
- strcpy(s, "object headers");
+ HDstrcpy(s, "object headers");
break;
default:
sprintf(s, "unknown id %d", i);