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