Add -t option
[babeltrace.git] / formats / ctf-text / types / array.c
index f61693ab85b4245867ee80e62a8eb89955449c7a..aa941b5e9a3dec8c6505d8bd1105b12ed1fac99e 100644 (file)
@@ -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;
This page took 0.023165 seconds and 4 git commands to generate.