X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Farray.c;h=aa941b5e9a3dec8c6505d8bd1105b12ed1fac99e;hp=f61693ab85b4245867ee80e62a8eb89955449c7a;hb=d63ca2cd2249356c28a63653d30c681e9a7ce249;hpb=312623540c466defab45503fbe0ce7ec79dcce85 diff --git a/formats/ctf-text/types/array.c b/formats/ctf-text/types/array.c index f61693ab..aa941b5e 100644 --- a/formats/ctf-text/types/array.c +++ b/formats/ctf-text/types/array.c @@ -25,7 +25,6 @@ int ctf_text_array_write(struct stream_pos *ppos, struct definition *definition) int ret; if (!pos->dummy) { - //print_pos_tabs(pos); if (definition->index != 0 && definition->index != INT_MAX) fprintf(pos->fp, ","); if (definition->index != INT_MAX) @@ -39,7 +38,6 @@ int ctf_text_array_write(struct stream_pos *ppos, struct definition *definition) ret = array_rw(ppos, definition); if (!pos->dummy) { pos->depth--; - //print_pos_tabs(pos); fprintf(pos->fp, " ]"); } return ret;