From 40f7101a75ea717f16509d39608777e1c7988ab8 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Sun, 14 May 2017 17:33:59 -0400 Subject: [PATCH] lib/ctf-ir/stream-class.c: logging: fix typo 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/stream-class.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.34.1