diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2021-11-02 19:24:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 19:24:14 (GMT) |
commit | 60ed6c0df43205de7b3cad9e3b8a115c108abdeb (patch) | |
tree | 98de66992456d01ed1f88edf7010aba16404f654 /test/tvlstr.c | |
parent | ed3584ecc68fa4281f5ba01fcd175ce174b32221 (diff) | |
download | hdf5-60ed6c0df43205de7b3cad9e3b8a115c108abdeb.zip hdf5-60ed6c0df43205de7b3cad9e3b8a115c108abdeb.tar.gz hdf5-60ed6c0df43205de7b3cad9e3b8a115c108abdeb.tar.bz2 |
OESS-168: Remove clang warnings. (#1146)
Diffstat (limited to 'test/tvlstr.c')
-rw-r--r-- | test/tvlstr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tvlstr.c b/test/tvlstr.c index 7e47c7b..68f6124 100644 --- a/test/tvlstr.c +++ b/test/tvlstr.c @@ -293,7 +293,7 @@ test_vlstrings_special(void) /* Check data read in */ for (i = 0; i < SPACE1_DIM1; i++) if (rdata[i] != NULL) - TestErrPrintf("VL doesn't match!, rdata[%d]=%p\n", (int)i, rdata[i]); + TestErrPrintf("VL doesn't match!, rdata[%d]=%s\n", (int)i, rdata[i]); /* Write dataset to disk */ ret = H5Dwrite(dataset, tid1, H5S_ALL, H5S_ALL, H5P_DEFAULT, wdata); @@ -352,7 +352,7 @@ test_vlstrings_special(void) /* Check data read in */ for (i = 0; i < SPACE1_DIM1; i++) if (rdata[i] != NULL) - TestErrPrintf("VL doesn't match!, rdata[%d]=%p\n", (int)i, rdata[i]); + TestErrPrintf("VL doesn't match!, rdata[%d]=%s\n", (int)i, rdata[i]); /* Try to write nil strings to disk. */ ret = H5Dwrite(dataset, tid1, H5S_ALL, H5S_ALL, H5P_DEFAULT, wdata2); @@ -365,7 +365,7 @@ test_vlstrings_special(void) /* Check data read in */ for (i = 0; i < SPACE1_DIM1; i++) if (rdata[i] != NULL) - TestErrPrintf("VL doesn't match!, rdata[%d]=%p\n", (int)i, rdata[i]); + TestErrPrintf("VL doesn't match!, rdata[%d]=%s\n", (int)i, rdata[i]); /* Close Dataset */ ret = H5Dclose(dataset); |