summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-10-08 17:13:34 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-10-08 17:13:34 (GMT)
commit9fd4d54d1b612537dc02db7ae82b9278c9f3b2e1 (patch)
tree93f9e8c172d5c7722ab52d81630aa87212fb472a /test
parentf89b8d3252f60e5f13730584ad9f38079c924c31 (diff)
downloadhdf5-9fd4d54d1b612537dc02db7ae82b9278c9f3b2e1.zip
hdf5-9fd4d54d1b612537dc02db7ae82b9278c9f3b2e1.tar.gz
hdf5-9fd4d54d1b612537dc02db7ae82b9278c9f3b2e1.tar.bz2
HDFFV-10903 another boolean fixed
Diffstat (limited to 'test')
-rw-r--r--test/s3comms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/s3comms.c b/test/s3comms.c
index 9453b75..53698a5 100644
--- a/test/s3comms.c
+++ b/test/s3comms.c
@@ -2603,10 +2603,10 @@ test_uriencode(void)
HDassert(dest != NULL);
JSVERIFY( FAIL,
- H5FD_s3comms_uriencode(NULL, "word$", 5, false, &dest_written),
+ H5FD_s3comms_uriencode(NULL, "word$", 5, FALSE, &dest_written),
"destination cannot be NULL" );
JSVERIFY( FAIL,
- H5FD_s3comms_uriencode(dest, NULL, 5, false, &dest_written),
+ H5FD_s3comms_uriencode(dest, NULL, 5, FALSE, &dest_written),
"source string cannot be NULL" );
free(dest);