3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

fix examples

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-11-20 08:01:59 -08:00
parent fd8fd40669
commit 995e112a18
2 changed files with 3 additions and 3 deletions

View file

@ -2209,7 +2209,7 @@ static bool is_smt2_file(char const* filename) {
static void check_error(z3::context& ctx) {
Z3_error_code e = Z3_get_error_code(ctx);
if (e != Z3_OK) {
std::cout << Z3_get_error_msg_ex(ctx, e) << "\n";
std::cout << Z3_get_error_msg(ctx, e) << "\n";
exit(1);
}
}