[LIB]: Fix problem introduced by the conf_fprintf work

type__emit needs to use .emit_stats = 1 or emit the ';', do the former.

Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
This commit is contained in:
Arnaldo Carvalho de Melo 2007-04-28 16:49:10 -03:00
parent 0a6607d22c
commit 210921279a
1 changed files with 3 additions and 2 deletions

View File

@ -3819,8 +3819,9 @@ void type__emit(struct tag *tag_self, struct cu *cu,
if (ctype->name != NULL || suffix != NULL || prefix != NULL) {
struct conf_fprintf conf = {
.prefix = prefix,
.suffix = suffix,
.prefix = prefix,
.suffix = suffix,
.emit_stats = 1,
};
tag__fprintf(tag_self, cu, &conf, fp);