lib/ctf-ir/stream-class.c: logging: fix typo
[babeltrace.git] / lib / ctf-ir / stream-class.c
index 0f1eee39f16625bba14e12d969232ba868765a0d..ab2ec84ff1c25abff9c0295fd1c5e6a9ea51744a 100644 (file)
@@ -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;
        }
 
This page took 0.035896 seconds and 4 git commands to generate.