summaryrefslogtreecommitdiffstats
path: root/test/dsets.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/dsets.c')
-rw-r--r--test/dsets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dsets.c b/test/dsets.c
index 4f2f75a..e7527a8 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -7741,7 +7741,7 @@ static H5_ATTR_CONST long
gcd(long l0, long r0)
{
long magnitude, remainder;
- bool negative = ((l0 < 0) != (r0 < 0));
+ hbool_t negative = ((l0 < 0) != (r0 < 0));
long l = HDlabs(l0), r = HDlabs(r0);
do {