[DWARVES]: Replace misplaced putchar with fputc in class__fprintf

Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
This commit is contained in:
Arnaldo Carvalho de Melo 2007-11-10 16:27:24 -02:00
parent 09b28d519e
commit bb9bb96c5b
1 changed files with 1 additions and 1 deletions

View File

@ -2532,7 +2532,7 @@ size_t class__fprintf(struct class *self, const struct cu *cu,
cconf.indent, tabs,
tself->size, sum, sum_holes,
tself->size - (sum + sum_holes));
putchar('\n');
fputc('\n', fp);
out:
return printed + fprintf(fp, "%.*s}%s%s", indent, tabs,
cconf.suffix ? " ": "", cconf.suffix ?: "");