diff options
Diffstat (limited to 'contrib/pgcrypto/imath.c')
-rw-r--r-- | contrib/pgcrypto/imath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/imath.c b/contrib/pgcrypto/imath.c index 6936d2cdcaf..545f148a76a 100644 --- a/contrib/pgcrypto/imath.c +++ b/contrib/pgcrypto/imath.c @@ -2361,12 +2361,12 @@ s_ucmp(mp_int a, mp_int b) static int s_vcmp(mp_int a, mp_small v) { -#if _MSC_VER +#ifdef _MSC_VER #pragma warning(push) #pragma warning(disable: 4146) #endif mp_usmall uv = (v < 0) ? -(mp_usmall) v : (mp_usmall) v; -#if _MSC_VER +#ifdef _MSC_VER #pragma warning(pop) #endif |