From 03409974b24246f339f20e06f749ef1a704fc771 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Wed, 24 May 2017 19:08:40 -0400 Subject: [PATCH] lib/ctf-ir/event-class.c: minor logging message edit MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- lib/ctf-ir/event-class.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ctf-ir/event-class.c b/lib/ctf-ir/event-class.c index f1859d34..4381d051 100644 --- a/lib/ctf-ir/event-class.c +++ b/lib/ctf-ir/event-class.c @@ -789,9 +789,9 @@ void bt_ctf_event_class_destroy(struct bt_object *obj) bt_ctf_event_class_get_id(event_class)); BT_LOGD_STR("Destroying event class's attributes."); bt_ctf_attributes_destroy(event_class->attributes); - BT_LOGD_STR("Putting event class's context field type."); + BT_LOGD_STR("Putting context field type."); bt_put(event_class->context); - BT_LOGD_STR("Putting event class's payload field type."); + BT_LOGD_STR("Putting payload field type."); bt_put(event_class->fields); g_free(event_class); } -- 2.34.1