[CLASSES]: Remove stray ; in function__print

Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2006-11-20 00:26:04 -02:00
parent a1c8aefe4e
commit bcc85784fe
1 changed files with 1 additions and 1 deletions

View File

@ -778,7 +778,7 @@ void function__print(const struct function *self)
/* No parameters? */
if (first_parameter)
fputs("void", stdout);
else if (self->unspecified_parameters);
else if (self->unspecified_parameters)
fputs(", ...", stdout);
fputs(");\n", stdout);
printf("/* size: %llu", self->high_pc - self->low_pc);