1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-15 20:26:33 +00:00

Correct error message when debug frame extension limit exceeded

This commit is contained in:
Nick Briggs
2024-10-22 09:56:06 -07:00
parent c3b7d1707d
commit d2d4f18ade

View File

@@ -589,8 +589,8 @@ void bt1(FX *startFX) {
BT_morep;
while ((fnobj->framename != ATOM_T) && (fx->alink != 11)) {
if (fnum > URMAXFXNUM - 1) {
/* Internal buf overflow,more than 100 stacks */
printf("***There are more than 100 stack frames.\n");
/* Internal buf overflow, too many stack frames */
printf("***There are more than %d stack frames.\n", URMAXFXNUM);
printf(
"If you want to continue, Uraid will smash its internal table for FX pointer. Do you "
"accept?(Y or N)\n");