print the function number when dumping functions

This commit is contained in:
Bill Currie 2002-08-20 01:51:27 +00:00
parent 32a85e7130
commit e8a834d6a4
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ dump_functions (progs_t *pr)
else
comment = va (" = #%d", -start);
printf ("%s%s: %d", name, comment, func->numparms);
printf ("%-5d %s%s: %d", i, name, comment, func->numparms);
if (func->numparms < 0)
count = -func->numparms - 1;
else