summaryrefslogtreecommitdiffstats
path: root/test/testframe.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 /test/testframe.c
parentd278ce1f21903c33c6b28e8acb827e94275d4421 (diff)
downloadhdf5-d81e751d4124684dbf280221a2f02831882aaa27.zip
hdf5-d81e751d4124684dbf280221a2f02831882aaa27.tar.gz
hdf5-d81e751d4124684dbf280221a2f02831882aaa27.tar.bz2
Remove HDva_(arg|copy|end|start) (#3184)
Diffstat (limited to 'test/testframe.c')
-rw-r--r--test/testframe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testframe.c b/test/testframe.c
index 90d975e..b0fb7d8 100644
--- a/test/testframe.c
+++ b/test/testframe.c
@@ -574,9 +574,9 @@ TestErrPrintf(const char *format, ...)
num_errs++;
/* Print the requested information */
- HDva_start(arglist, format);
+ va_start(arglist, format);
ret_value = HDvprintf(format, arglist);
- HDva_end(arglist);
+ va_end(arglist);
/* Return the length of the string produced (like printf() does) */
return ret_value;