From 5a4d16790d66c737a974c962952ff878409cec7a Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Thu, 4 Jun 2009 10:21:24 -0500 Subject: [PATCH] fix bad bracket for non GMP (Simon Strobl, #117) --- library/yap2swi/yap2swi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/yap2swi/yap2swi.c b/library/yap2swi/yap2swi.c index 025a1a522..5ece9b4d4 100644 --- a/library/yap2swi/yap2swi.c +++ b/library/yap2swi/yap2swi.c @@ -2210,8 +2210,8 @@ PL_eval_expression_to_int_64_ex(term_t t, int64_t *val) mpz_get_str (s, 10, &g); sscanf(s, "%lld", (long long int *)val); return 1; - } #endif + } PL_error(NULL,0,NULL, ERR_TYPE, AtomToSWIAtom(Yap_LookupAtom("integer_expression"))); return FALSE; }