stacks: fix a type in an error message

This commit is contained in:
Daniel Kochmański 2025-06-03 21:16:33 +02:00
parent 0f24472237
commit 9a894b7dab

View file

@ -330,7 +330,7 @@ ecl_stack_frame_push_values(cl_object f)
f->frame.size = value_index - f->frame.base;
ecl_data_stack_push_values(the_env);
} else {
ecl_internal_error("ecl_stack_frame_pop: frame overflow.");
ecl_internal_error("ecl_stack_frame_push: frame overflow.");
}
}