summaryrefslogtreecommitdiffstats
path: root/test/thread_id.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 15:31:32 (GMT)
committerGitHub <noreply@github.com>2023-06-28 15:31:32 (GMT)
commit187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98 (patch)
treebaffa167d0796786241aef6b0ce76d4adec3b66e /test/thread_id.c
parent7a44581a84778a1346a2fd5b6cca7d9db905a321 (diff)
downloadhdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.zip
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.gz
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.bz2
Rename HD(f)printf() to (f)printf() (#3194)
Diffstat (limited to 'test/thread_id.c')
-rw-r--r--test/thread_id.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/thread_id.c b/test/thread_id.c
index c0614f4..ebe4a79 100644
--- a/test/thread_id.c
+++ b/test/thread_id.c
@@ -34,7 +34,7 @@ my_errx(int code, const char *fmt, ...)
{
va_list ap;
- (void)HDfprintf(stderr, "thread_id: ");
+ (void)fprintf(stderr, "thread_id: ");
va_start(ap, fmt);
(void)HDvfprintf(stderr, fmt, ap);
va_end(ap);
@@ -176,11 +176,11 @@ my_err(int code, const char *fmt, ...)
va_list ap;
int errno_copy = errno;
- (void)HDfprintf(stderr, "thread_id: ");
+ (void)fprintf(stderr, "thread_id: ");
va_start(ap, fmt);
(void)HDvfprintf(stderr, fmt, ap);
va_end(ap);
- (void)HDfprintf(stderr, ": %s\n", HDstrerror(errno_copy));
+ (void)fprintf(stderr, ": %s\n", HDstrerror(errno_copy));
HDexit(code);
}
@@ -318,7 +318,7 @@ main(void)
int
main(void)
{
- HDfprintf(stderr, "not implemented in this configuration.\n");
+ fprintf(stderr, "not implemented in this configuration.\n");
return EXIT_SUCCESS;
}
#endif /*H5_HAVE_THREADSAFE && !H5_HAVE_WIN_THREADS*/