From 005f73a6f04f756b86330b096fe4eef5f048aceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zsolt=20Borb=C3=A9ly?= Date: Thu, 17 Mar 2016 09:09:50 +0100 Subject: [PATCH] Fix build with enabled LOG option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JerryScript-DCO-1.0-Signed-off-by: Zsolt Borbély zsborbely.u-szeged@partner.samsung.com --- jerry-core/parser/regexp/re-bytecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jerry-core/parser/regexp/re-bytecode.c b/jerry-core/parser/regexp/re-bytecode.c index e9047f30b..92999cf6a 100644 --- a/jerry-core/parser/regexp/re-bytecode.c +++ b/jerry-core/parser/regexp/re-bytecode.c @@ -240,7 +240,7 @@ void re_dump_bytecode (re_bytecode_ctx_t *bc_ctx_p) /**< RegExp bytecode context */ { re_compiled_code_t *compiled_code_p = (re_compiled_code_t *) bc_ctx_p->block_start_p; - JERRY_DLOG ("%d ", compiled_code_p->flags); + JERRY_DLOG ("%d ", compiled_code_p->header.status_flags); JERRY_DLOG ("%d ", compiled_code_p->num_of_captures); JERRY_DLOG ("%d | ", compiled_code_p->num_of_non_captures);