Fixed a misleading indent reported by Thomas Walter

This commit is contained in:
Landon Curt Noll
2017-09-06 17:40:49 -07:00
parent bf23f82c29
commit cbbd866535

13
zfunc.c
View File

@@ -1029,12 +1029,17 @@ zgcd(ZVALUE z1, ZVALUE z2, ZVALUE *res)
needw = FALSE;
}
g = *a0 * w;
if (h < BASEB) g &= (1 << h) - 1;
else g &= BASE1;
if (h < BASEB) {
g &= (1 << h) - 1;
} else {
g &= BASE1;
}
else g = 1;
} else
} else {
g = 1;
}
} else {
g = (HALF) *a0 * w;
}
a = a0;
b = b0;
i = n;