From 815f52f4ce1c7d2d69c9dad65974f9bc0d629807 Mon Sep 17 00:00:00 2001 From: paladin-t Date: Mon, 14 Mar 2016 15:46:08 +0800 Subject: [PATCH] *fixed a wrong assertion issue. --- core/my_basic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/my_basic.c b/core/my_basic.c index 643c89d..9496047 100755 --- a/core/my_basic.c +++ b/core/my_basic.c @@ -3196,7 +3196,7 @@ static bool_t _is_expression_terminal(mb_interpreter_t* s, _object_t* obj) { static bool_t _is_unexpected_calc_type(mb_interpreter_t* s, _object_t* obj) { /* Determine whether an object is an unexpected calculation result */ - mb_assert(s && obj); + mb_assert(s); return !obj || ( (obj->type == _DT_FUNC) ||