mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Fixed a misleading indent reported by Thomas Walter
This commit is contained in:
13
zfunc.c
13
zfunc.c
@@ -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;
|
||||
|
Reference in New Issue
Block a user