Commit be9a71fd5276021bd0407003cc2f35c6716adc67

czurnieden 2019-09-09T03:27:25

soothed preprocessor

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/bn_mp_prime_is_prime.c b/bn_mp_prime_is_prime.c
index 1afa1ae..86edcb6 100644
--- a/bn_mp_prime_is_prime.c
+++ b/bn_mp_prime_is_prime.c
@@ -105,7 +105,7 @@ mp_err mp_prime_is_prime(const mp_int *a, int t, mp_bool *result)
        * MP_8BIT (It is unknown if the Lucas-Selfridge test works with 16-bit
        * integers but the necesssary analysis is on the todo-list).
        */
-#ifdef (LTM_USE_FROBENIUS_TEST)
+#ifdef LTM_USE_FROBENIUS_TEST
       err = mp_prime_frobenius_underwood(a, &res);
       if ((err != MP_OKAY) && (err != MP_ITER)) {
          goto LBL_B;