diff options
Diffstat (limited to 'src/program.c')
-rw-r--r-- | src/program.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/program.c b/src/program.c index 030d5aa..7005c71 100644 --- a/src/program.c +++ b/src/program.c @@ -363,11 +363,11 @@ static TslProgramResult tsl_program_run_function(TslProgram *self, int function_ instruction += sizeof(TslInstructionType1); break; } - case TSL_OPCODE_MINDEX: { + case TSL_OPCODE_INDEX: { TslStackValue stack_value; stack_value.type = TSL_STACK_VALUE_TYPE_INDEX; cleanup_if_error(tsl_buffer_append(&self->stack_values, &stack_value, sizeof(stack_value))); - /*printf("mindex\n");*/ + /*printf("index\n");*/ instruction += sizeof(TslInstructionType5); break; } |