From 97256daeed930002d3ebe52709108bd6a2504dc3 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Tue, 15 Jul 2014 20:26:40 +0200 Subject: [PATCH] remove surplus ';' --- src/headers/tomcrypt_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/headers/tomcrypt_math.h b/src/headers/tomcrypt_math.h index 7e6e798..f4f397a 100644 --- a/src/headers/tomcrypt_math.h +++ b/src/headers/tomcrypt_math.h @@ -521,7 +521,7 @@ extern const ltc_math_descriptor gmp_desc; #define mp_iszero(a) (mp_cmp_d(a, 0) == LTC_MP_EQ ? LTC_MP_YES : LTC_MP_NO) #define mp_isodd(a) (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO) -#define mp_exch(a, b) do { void *ABC__tmp = a; a = b; b = ABC__tmp; } while(0); +#define mp_exch(a, b) do { void *ABC__tmp = a; a = b; b = ABC__tmp; } while(0) #define mp_tohex(a, b) mp_toradix(a, b, 16)