Update pretty-print
[babeltrace.git] / formats / ctf-text / types / struct.c
index 760f1727d4f37d4968b8f2456d2e9dacec2cc168..e8ffddc2bc362472ea3a4503e7e5d0fb5ef77552 100644 (file)
@@ -26,8 +26,15 @@ int ctf_text_struct_write(struct stream_pos *ppos, struct definition *definition
 
        if (!pos->dummy) {
                if (pos->depth >= 0) {
-                       print_pos_tabs(pos);
-                       fprintf(pos->fp, "{\n");
+                       //print_pos_tabs(pos);
+                       if (definition->index != 0 && definition->index != INT_MAX)
+                               fprintf(pos->fp, ",");
+                       if (definition->index != INT_MAX)
+                               fprintf(pos->fp, " ");
+                       if (pos->print_names && definition->name != 0)
+                               fprintf(pos->fp, "%s = ",
+                                       g_quark_to_string(definition->name));
+                       fprintf(pos->fp, "{");
                }
                pos->depth++;
        }
@@ -35,8 +42,8 @@ int ctf_text_struct_write(struct stream_pos *ppos, struct definition *definition
        if (!pos->dummy) {
                pos->depth--;
                if (pos->depth >= 0) {
-                       print_pos_tabs(pos);
-                       fprintf(pos->fp, "}\n");
+                       //print_pos_tabs(pos);
+                       fprintf(pos->fp, " }");
                }
        }
        return ret;
This page took 0.024117 seconds and 4 git commands to generate.