X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fstruct.c;h=4270a21afa65bb99e87b6e5d8955c026e6606a56;hp=cd63fe99551cbaaf4f45d210f10772011856cc2f;hb=c8b219a3168dd382a167a72406e268550005e662;hpb=478b63899006dac8f96cca441b48e4fc177adbe8 diff --git a/formats/ctf-text/types/struct.c b/formats/ctf-text/types/struct.c index cd63fe99..4270a21a 100644 --- a/formats/ctf-text/types/struct.c +++ b/formats/ctf-text/types/struct.c @@ -24,14 +24,18 @@ void ctf_text_struct_write(struct stream_pos *ppos, struct definition *definitio struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); if (!pos->dummy) { - print_pos_tabs(pos); - fprintf(pos->fp, "{\n"); + if (pos->depth >= 0) { + print_pos_tabs(pos); + fprintf(pos->fp, "{\n"); + } pos->depth++; } struct_rw(ppos, definition); if (!pos->dummy) { pos->depth--; - print_pos_tabs(pos); - fprintf(pos->fp, "}\n"); + if (pos->depth >= 0) { + print_pos_tabs(pos); + fprintf(pos->fp, "}\n"); + } } }