Skip to content

Commit d2d4f18

Browse files
committed
Correct error message when debug frame extension limit exceeded
1 parent c3b7d17 commit d2d4f18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dbgtool.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,8 +589,8 @@ void bt1(FX *startFX) {
589589
BT_morep;
590590
while ((fnobj->framename != ATOM_T) && (fx->alink != 11)) {
591591
if (fnum > URMAXFXNUM - 1) {
592-
/* Internal buf overflow,more than 100 stacks */
593-
printf("***There are more than 100 stack frames.\n");
592+
/* Internal buf overflow, too many stack frames */
593+
printf("***There are more than %d stack frames.\n", URMAXFXNUM);
594594
printf(
595595
"If you want to continue, Uraid will smash its internal table for FX pointer. Do you "
596596
"accept?(Y or N)\n");

0 commit comments

Comments
 (0)