Remove leading underscores from identifiers directly in lexer
[babeltrace.git] / formats / ctf-text / types / float.c
index 2b0dccecc9a3a3b68948a7e04c3c8d4eb654a2a5..5897ce9d74ff84fffabfb8396fa4dc34e814fe95 100644 (file)
@@ -40,8 +40,8 @@ int ctf_text_float_write(struct stream_pos *ppos, struct definition *definition)
        fprintf(pos->fp, " ");
        if (pos->print_names)
                fprintf(pos->fp, "%s = ",
-                       rem_(g_quark_to_string(definition->name)));
+                       g_quark_to_string(definition->name));
 
-       fprintf(pos->fp, "%Lg\n", float_definition->value);
+       fprintf(pos->fp, "%g", float_definition->value);
        return 0;
 }
This page took 0.052379 seconds and 4 git commands to generate.