Commit be42ce203ef321617b9797346021961b0e539c13

Francois Perrad 2019-05-19T16:40:38

remove literal prefix

diff --git a/bn_mp_kronecker.c b/bn_mp_kronecker.c
index 8245e84..525a820 100644
--- a/bn_mp_kronecker.c
+++ b/bn_mp_kronecker.c
@@ -51,7 +51,7 @@ mp_err mp_kronecker(const mp_int *a, const mp_int *p, int *c)
       goto LBL_KRON_1;
    }
 
-   if ((v & 0x1) == 0) {
+   if ((v & 1) == 0) {
       k = 1;
    } else {
       k = table[a->dp[0] & 7u];
@@ -84,7 +84,7 @@ mp_err mp_kronecker(const mp_int *a, const mp_int *p, int *c)
          goto LBL_KRON;
       }
 
-      if ((v & 0x1) == 1) {
+      if ((v & 1) == 1) {
          k = k * table[p1.dp[0] & 7u];
       }