From: Philippe Proulx Date: Sun, 14 May 2017 21:33:59 +0000 (-0400) Subject: lib/ctf-ir/stream-class.c: logging: fix typo X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=40f7101a75ea717f16509d39608777e1c7988ab8;p=deliverable%2Fbabeltrace.git lib/ctf-ir/stream-class.c: logging: fix typo Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/lib/ctf-ir/stream-class.c b/lib/ctf-ir/stream-class.c index 0f1eee39f..ab2ec84ff 100644 --- a/lib/ctf-ir/stream-class.c +++ b/lib/ctf-ir/stream-class.c @@ -125,19 +125,19 @@ struct bt_ctf_stream_class *bt_ctf_stream_class_create_empty(const char *name) stream_class->packet_context_type = bt_ctf_field_type_structure_create(); if (!stream_class->packet_context_type) { - BT_LOGE_STR("Cannot stream class's initial packet context field type."); + BT_LOGE_STR("Cannot create stream class's initial packet context field type."); goto error; } stream_class->event_header_type = bt_ctf_field_type_structure_create(); if (!stream_class->event_header_type) { - BT_LOGE_STR("Cannot stream class's initial event header field type."); + BT_LOGE_STR("Cannot create stream class's initial event header field type."); goto error; } stream_class->event_context_type = bt_ctf_field_type_structure_create(); if (!stream_class->event_context_type) { - BT_LOGE_STR("Cannot stream class's initial event context field type."); + BT_LOGE_STR("Cannot create stream class's initial event context field type."); goto error; }