From 4ebdec03ec8a1da1d672229533d1c699ed875555 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 12 Feb 2015 20:12:12 -0500 Subject: [PATCH] Fix: erroneous use of semicolon instead of comma in TSDL serialization MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- formats/ctf/ir/event-types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, "; }"); -- 2.34.1