fix bad bracket for non GMP (Simon Strobl, #117)

This commit is contained in:
Vitor Santos Costa 2009-06-04 10:21:24 -05:00
parent b455f057a8
commit 5a4d16790d
1 changed files with 1 additions and 1 deletions

View File

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