diff --git a/src/c/interpreter.d b/src/c/interpreter.d index 65d246404..05efe8ddd 100644 --- a/src/c/interpreter.d +++ b/src/c/interpreter.d @@ -501,7 +501,7 @@ close_around(cl_object fun, cl_object lex) { cl_object ecl_interpret(cl_object frame, cl_object env, cl_object bytecodes, cl_index offset) { - ECL_OFFSET_TABLE; + ECL_OFFSET_TABLE typedef struct cl_env_struct *cl_env_ptr; const cl_env_ptr the_env = &cl_env; volatile bds_ptr old_bds_top = cl_env.bds_top; diff --git a/src/h/bytecodes.h b/src/h/bytecodes.h index 26228ce25..ff0238f17 100644 --- a/src/h/bytecodes.h +++ b/src/h/bytecodes.h @@ -243,5 +243,5 @@ typedef int16_t cl_oparg; &&LBL_OP_PUSHNIL - &&LBL_OP_NOP,\ &&LBL_OP_STEPIN - &&LBL_OP_NOP,\ &&LBL_OP_STEPCALL - &&LBL_OP_NOP,\ - &&LBL_OP_STEPOUT - &&LBL_OP_NOP } + &&LBL_OP_STEPOUT - &&LBL_OP_NOP }; #endif