diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2021-12-08 14:38:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-08 14:38:40 (GMT) |
commit | abb05bce6e762aa1e3f93a67c39a63b4fa0762cf (patch) | |
tree | d7c0a7d42c7349c86e676c7173b48167f57f81f4 /test | |
parent | 40a23b67eaddae2da87ce2c69d2d267168dcc0a8 (diff) | |
download | hdf5-abb05bce6e762aa1e3f93a67c39a63b4fa0762cf.zip hdf5-abb05bce6e762aa1e3f93a67c39a63b4fa0762cf.tar.gz hdf5-abb05bce6e762aa1e3f93a67c39a63b4fa0762cf.tar.bz2 |
OESS-168: Remove clang warnings. (#1263)
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index 8ae913f..5a4f2d6 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 */ |