summaryrefslogtreecommitdiffstats
path: root/mpi/mpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpi/mpi.c')
-rw-r--r--mpi/mpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpi/mpi.c b/mpi/mpi.c
index 291f3d10..c8275189 100644
--- a/mpi/mpi.c
+++ b/mpi/mpi.c
@@ -4102,7 +4102,7 @@ int s_mp_ispow2d(mp_digit d)
return -1; /* not a power of two */
/* If d == 0, s_highest_bit returns 0, thus we return -1. */
- return (int) s_highest_bit(d) - 1;
+ return convert(int, s_highest_bit(d)) - 1;
}
/* Convert the given character to its digit value, in the given radix.