aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 7758a22243..0e49e4439d 100644
--- a/util.c
+++ b/util.c
@@ -1342,7 +1342,7 @@ mult(Bigint *a, Bigint *b)
#else
#ifdef Pack_32
for (; xb < xbe; xb++, xc0++) {
- if (y = *xb & 0xffff) {
+ if ((y = *xb & 0xffff) != 0) {
x = xa;
xc = xc0;
carry = 0;
@@ -1355,7 +1355,7 @@ mult(Bigint *a, Bigint *b)
} while (x < xae);
*xc = (ULong)carry;
}
- if (y = *xb >> 16) {
+ if ((y = *xb >> 16) != 0) {
x = xa;
xc = xc0;
carry = 0;