Remove underscore prefix from field names (pretty-print)
[babeltrace.git] / formats / ctf-text / types / float.c
index 0c559b0eba4e8be23d1ca7d0c3511b3127bd513e..2b0dccecc9a3a3b68948a7e04c3c8d4eb654a2a5 100644 (file)
@@ -40,7 +40,7 @@ int ctf_text_float_write(struct stream_pos *ppos, struct definition *definition)
        fprintf(pos->fp, " ");
        if (pos->print_names)
                fprintf(pos->fp, "%s = ",
-                       g_quark_to_string(definition->name));
+                       rem_(g_quark_to_string(definition->name)));
 
        fprintf(pos->fp, "%Lg\n", float_definition->value);
        return 0;
This page took 0.022728 seconds and 4 git commands to generate.