Remove leading underscores from identifiers directly in lexer
[babeltrace.git] / formats / ctf-text / types / float.c
index 77651124d000e2bb41942efc7b3ec0385802b5c6..5897ce9d74ff84fffabfb8396fa4dc34e814fe95 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 = ",
-                       rem_(g_quark_to_string(definition->name)));
+                       g_quark_to_string(definition->name));
 
        fprintf(pos->fp, "%g", float_definition->value);
        return 0;
This page took 0.023513 seconds and 4 git commands to generate.