From 6fbbb4cd5fae997c570de7981d6137b4c1c8741d Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 25 Oct 2016 12:35:06 -0300 Subject: [PATCH] test --- src/mini-gmp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mini-gmp.c b/src/mini-gmp.c index 54497ca72..204c53afc 100644 --- a/src/mini-gmp.c +++ b/src/mini-gmp.c @@ -70,8 +70,7 @@ see https://www.gnu.org/licenses/. */ #define GMP_MAX(a, b) ((a) > (b) ? (a) : (b)) #define gmp_assert_nocarry(x) do { \ - mp_limb_t __cy = x; if ( __cy != 0 ) \ - ; \ + mp_limb_t __cy = x; if ( __cy != 0 ) ; \ assert (__cy == 0); \ } while (0)