X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fenum.c;h=0cb902180b3254597cc1237f9fc106e45a3ef287;hp=cf8cc4fa85d19364cf13e3d1bf3ec5f528ab5153;hb=d63ca2cd2249356c28a63653d30c681e9a7ce249;hpb=312623540c466defab45503fbe0ce7ec79dcce85 diff --git a/formats/ctf-text/types/enum.c b/formats/ctf-text/types/enum.c index cf8cc4fa..0cb90218 100644 --- a/formats/ctf-text/types/enum.c +++ b/formats/ctf-text/types/enum.c @@ -41,11 +41,9 @@ int ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) fprintf(pos->fp, "%s = ", g_quark_to_string(definition->name)); - //print_pos_tabs(pos); fprintf(pos->fp, "("); pos->depth++; ret = generic_rw(ppos, &integer_definition->p); - //print_pos_tabs(pos); fprintf(pos->fp, " :"); qs = enum_definition->value; @@ -61,7 +59,6 @@ int ctf_text_enum_write(struct stream_pos *ppos, struct definition *definition) fprintf(pos->fp, "%s\n", str); } pos->depth--; - //print_pos_tabs(pos); fprintf(pos->fp, " )"); return ret; }