summaryrefslogtreecommitdiffstats
path: root/src/H5RS.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 00:43:23 (GMT)
committerGitHub <noreply@github.com>2023-06-28 00:43:23 (GMT)
commitd81e751d4124684dbf280221a2f02831882aaa27 (patch)
tree580bf936c550d0692bc8ec7c435e5f935323e943 /src/H5RS.c
parentd278ce1f21903c33c6b28e8acb827e94275d4421 (diff)
downloadhdf5-d81e751d4124684dbf280221a2f02831882aaa27.zip
hdf5-d81e751d4124684dbf280221a2f02831882aaa27.tar.gz
hdf5-d81e751d4124684dbf280221a2f02831882aaa27.tar.bz2
Remove HDva_(arg|copy|end|start) (#3184)
Diffstat (limited to 'src/H5RS.c')
-rw-r--r--src/H5RS.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5RS.c b/src/H5RS.c
index 13422a3..172f1a5 100644
--- a/src/H5RS.c
+++ b/src/H5RS.c
@@ -373,16 +373,16 @@ H5RS_asprintf_cat(H5RS_str_t *rs, const char *fmt, ...)
HGOTO_ERROR(H5E_RS, H5E_CANTINIT, FAIL, "can't initialize ref-counted string")
/* Attempt to write formatted output into the managed string */
- HDva_start(args1, fmt);
- HDva_copy(args2, args1);
+ va_start(args1, fmt);
+ va_copy(args2, args1);
while ((out_len = (size_t)HDvsnprintf(rs->end, (rs->max - rs->len), fmt, args1)) >= (rs->max - rs->len)) {
/* Allocate a large enough buffer */
if (H5RS__resize_for_append(rs, out_len) < 0)
HGOTO_ERROR(H5E_RS, H5E_CANTRESIZE, FAIL, "can't resize ref-counted string buffer")
/* Restart the va_list */
- HDva_end(args1);
- HDva_copy(args1, args2);
+ va_end(args1);
+ va_copy(args1, args2);
} /* end while */
/* Increment the size & end of the string */
@@ -390,8 +390,8 @@ H5RS_asprintf_cat(H5RS_str_t *rs, const char *fmt, ...)
rs->end += out_len;
/* Finish access to varargs */
- HDva_end(args1);
- HDva_end(args2);
+ va_end(args1);
+ va_end(args2);
done:
FUNC_LEAVE_NOAPI(ret_value)