From: Jérémie Galarneau Date: Fri, 13 Feb 2015 01:12:12 +0000 (-0500) Subject: Fix: erroneous use of semicolon instead of comma in TSDL serialization X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=4ebdec03ec8a1da1d672229533d1c699ed875555;p=deliverable%2Fbabeltrace.git Fix: erroneous use of semicolon instead of comma in TSDL serialization Signed-off-by: Jérémie Galarneau --- diff --git a/formats/ctf/ir/event-types.c b/formats/ctf/ir/event-types.c index e614bbcd5..ee8125714 100644 --- a/formats/ctf/ir/event-types.c +++ b/formats/ctf/ir/event-types.c @@ -2129,7 +2129,7 @@ int bt_ctf_field_type_integer_serialize(struct bt_ctf_field_type *type, } g_string_append_printf(context->string, - ", map = clock.%s.value", clock_name); + "; map = clock.%s.value", clock_name); } g_string_append(context->string, "; }");