soothed preprocessor

This commit is contained in:
czurnieden 2019-09-09 03:27:25 +02:00 committed by Steffen Jaeckel
parent 70589a00f9
commit be9a71fd52
No known key found for this signature in database
GPG Key ID: AF0CB17621EDAD72

View File

@ -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;