Update pretty print output
[babeltrace.git] / formats / ctf-text / types / string.c
index 3979e826407fb745d6fc0e9ac7acf856d7c9b3f0..eca5f91f9e3d7dc8b1dca38c2b7d06c2aa615b6e 100644 (file)
@@ -32,10 +32,9 @@ int ctf_text_string_write(struct stream_pos *ppos,
        if (pos->dummy)
                return 0;
 
-       if (definition->index != 0 && definition->index != INT_MAX)
+       if (pos->field_nr++ != 0)
                fprintf(pos->fp, ",");
-       if (definition->index != INT_MAX)
-               fprintf(pos->fp, " ");
+       fprintf(pos->fp, " ");
        if (pos->print_names)
                fprintf(pos->fp, "%s = ",
                        g_quark_to_string(definition->name));
This page took 0.023933 seconds and 4 git commands to generate.