From: Philippe Proulx Date: Wed, 24 May 2017 23:08:40 +0000 (-0400) Subject: lib/ctf-ir/event-class.c: minor logging message edit X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=03409974b24246f339f20e06f749ef1a704fc771;p=deliverable%2Fbabeltrace.git lib/ctf-ir/event-class.c: minor logging message edit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/lib/ctf-ir/event-class.c b/lib/ctf-ir/event-class.c index f1859d347..4381d051d 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); }