Update pretty print output
[babeltrace.git] / formats / ctf-text / types / integer.c
index 0032e642f58ea0a39104cbfb23765e2c68296014..8b2df2c005a2f2e65b826d75dd422c77dac98a2b 100644 (file)
@@ -32,10 +32,9 @@ int ctf_text_integer_write(struct stream_pos *ppos, struct definition *definitio
        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.0225919999999999 seconds and 4 git commands to generate.