X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Fctf-text%2Ftypes%2Fenum.c;h=0cb902180b3254597cc1237f9fc106e45a3ef287;hb=764af3f43c289a0a5cd8bf6fd85d9361ae17a253;hp=cf8cc4fa85d19364cf13e3d1bf3ec5f528ab5153;hpb=312623540c466defab45503fbe0ce7ec79dcce85;p=babeltrace.git 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; }