diff --git a/src/rpn-general.h b/src/rpn-general.h index 8a387aa..377de87 100644 --- a/src/rpn-general.h +++ b/src/rpn-general.h @@ -136,7 +136,7 @@ void type() { MIN_ARGUMENTS(1); - int type = _stack->pop_back()->_type; + int type = _stack->back()->_type; if (type < 0 || type >= (int)cmd_max) type = (int)cmd_undef;