summaryrefslogtreecommitdiffstats
path: root/test/s3comms.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2020-12-24 15:12:01 (GMT)
committerGitHub <noreply@github.com>2020-12-24 15:12:01 (GMT)
commita6386824c75e804ae5f1782fbbeab79152389d2a (patch)
treedb1a0cc23d176411bdff7c24528c9a093f1899a5 /test/s3comms.c
parent5c9d08a964b80e25608a60e2425d9c838cf8055e (diff)
downloadhdf5-a6386824c75e804ae5f1782fbbeab79152389d2a.zip
hdf5-a6386824c75e804ae5f1782fbbeab79152389d2a.tar.gz
hdf5-a6386824c75e804ae5f1782fbbeab79152389d2a.tar.bz2
Switch bool/true/false to hbool_t/TRUE/FALSE in a few places (#229)
Diffstat (limited to 'test/s3comms.c')
-rw-r--r--test/s3comms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/s3comms.c b/test/s3comms.c
index 36f6f49..48f11c5 100644
--- a/test/s3comms.c
+++ b/test/s3comms.c
@@ -2538,9 +2538,9 @@ test_uriencode(void)
dest = (char *)HDmalloc(sizeof(char) * 15);
HDassert(dest != NULL);
- JSVERIFY(FAIL, H5FD_s3comms_uriencode(NULL, "word$", 5, false, &dest_written),
+ JSVERIFY(FAIL, H5FD_s3comms_uriencode(NULL, "word$", 5, FALSE, &dest_written),
"destination cannot be NULL");
- JSVERIFY(FAIL, H5FD_s3comms_uriencode(dest, NULL, 5, false, &dest_written),
+ JSVERIFY(FAIL, H5FD_s3comms_uriencode(dest, NULL, 5, FALSE, &dest_written),
"source string cannot be NULL");
HDfree(dest);