From af8507e788cd727e753634e36b215983d60d3863 Mon Sep 17 00:00:00 2001 From: Wang Renxin Date: Sun, 21 Aug 2016 20:23:53 +0800 Subject: [PATCH] *polished code. --- 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 0334edc..50c117a 100755 --- a/core/my_basic.c +++ b/core/my_basic.c @@ -15968,7 +15968,7 @@ static int _std_set(mb_interpreter_t* s, void** l) { mb_check(mb_pop_value(s, l, &nv)); field = mb_strupr(field); fnode = _search_identifier_in_class(s, obj.data.instance, field, 0, 0); - if (fnode && _IS_VAR(fnode->data)) { + if(fnode && _IS_VAR(fnode->data)) { _object_t* nobj = 0; fobj = (_object_t*)fnode->data; _destroy_object(fobj->data.variable->data, 0);