Fix: emf uri: surround by " "
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 20 Sep 2012 16:50:26 +0000 (12:50 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 20 Sep 2012 16:50:26 +0000 (12:50 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
formats/ctf-text/ctf-text.c

index ca44a6fdc961e54830662877675b31a78a3da147..e23bb9e2c4093ab2ca45029bd7046c02c642ed94 100644 (file)
@@ -393,7 +393,7 @@ int ctf_text_write_event(struct stream_pos *ppos, struct ctf_stream_definition *
                } else if (dom_print) {
                        fprintf(pos->fp, ":");
                }
                } else if (dom_print) {
                        fprintf(pos->fp, ":");
                }
-               fprintf(pos->fp, "%s",
+               fprintf(pos->fp, "\"%s\"",
                        g_quark_to_string(event_class->model_emf_uri));
                if (pos->print_names)
                        fprintf(pos->fp, ", ");
                        g_quark_to_string(event_class->model_emf_uri));
                if (pos->print_names)
                        fprintf(pos->fp, ", ");
This page took 0.024693 seconds and 4 git commands to generate.