summaryrefslogtreecommitdiffstats
path: root/test/dtypes.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2022-04-05 16:02:12 (GMT)
committerGitHub <noreply@github.com>2022-04-05 16:02:12 (GMT)
commit9f2b38bb61df6136d214cb7ab248f73d1ff9458c (patch)
tree703b1eec9eee535667b8753916b3714815f8f810 /test/dtypes.c
parentbddd148fd29deb18439767c416199914845431b8 (diff)
downloadhdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.zip
hdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.tar.gz
hdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.tar.bz2
Clang warning fixes from develop. (#1583)
Diffstat (limited to 'test/dtypes.c')
-rw-r--r--test/dtypes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dtypes.c b/test/dtypes.c
index 6c1a440..bf2ad5a 100644
--- a/test/dtypes.c
+++ b/test/dtypes.c
@@ -2359,7 +2359,7 @@ test_compound_11(void)
TEST_ERROR
} /* end if */
if (((big_t *)buf_orig)[u].s1 == NULL || ((little_t *)buf)[u].s1 == NULL) {
- HDprintf("Error, line #%d: buf_orig[%u].s1=%p, buf[%u].s1=%p\n", __LINE__, (unsigned)u,
+ HDprintf("Error, line #%d: buf_orig[%u].s1=%s, buf[%u].s1=%s\n", __LINE__, (unsigned)u,
((big_t *)buf_orig)[u].s1, (unsigned)u, ((little_t *)buf)[u].s1);
TEST_ERROR
} /* end if */
@@ -2410,7 +2410,7 @@ test_compound_11(void)
TEST_ERROR
} /* end if */
if (((big_t *)buf_orig)[u].s1 == NULL || ((little_t *)buf)[u].s1 == NULL) {
- HDprintf("Error, line #%d: buf_orig[%u].s1=%p, buf[%u].s1=%p\n", __LINE__, (unsigned)u,
+ HDprintf("Error, line #%d: buf_orig[%u].s1=%s, buf[%u].s1=%s\n", __LINE__, (unsigned)u,
((big_t *)buf_orig)[u].s1, (unsigned)u, ((little_t *)buf)[u].s1);
TEST_ERROR
} /* end if */
@@ -2451,7 +2451,7 @@ test_compound_11(void)
TEST_ERROR
} /* end if */
if (((big_t *)buf_orig)[u].s1 == NULL || ((little_t *)buf)[u].s1 == NULL) {
- HDprintf("Error, line #%d: buf_orig[%u].s1=%p, buf[%u].s1=%p\n", __LINE__, (unsigned)u,
+ HDprintf("Error, line #%d: buf_orig[%u].s1=%s, buf[%u].s1=%s\n", __LINE__, (unsigned)u,
((big_t *)buf_orig)[u].s1, (unsigned)u, ((little_t *)buf)[u].s1);
TEST_ERROR
} /* end if */