Remove leading underscores from identifiers directly in lexer
[babeltrace.git] / formats / ctf-text / types / enum.c
index b973d494b195dcd67d65931979b3d28dc06996a7..12031c242fef048c6de3687636fd211790456405 100644 (file)
@@ -44,7 +44,7 @@ int ctf_text_enum_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));
 
        field_nr_saved = pos->field_nr;
        pos->field_nr = 0;
This page took 0.022951 seconds and 4 git commands to generate.