X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fctf-ir%2Ffield-types.c;h=62f2412b5b81bc4ab99296d71eb49198395d762c;hb=631234da6f052f12bb537087a54f3eea095605f1;hp=feb7a62bc506db5b59fa526a6d824314677f1df0;hpb=2a03740bf75dfb7284e1984586d8f2da6722b236;p=babeltrace.git diff --git a/lib/ctf-ir/field-types.c b/lib/ctf-ir/field-types.c index feb7a62b..62f2412b 100644 --- a/lib/ctf-ir/field-types.c +++ b/lib/ctf-ir/field-types.c @@ -1273,7 +1273,7 @@ bt_field_type_enumeration_find_mappings_by_name( iter = bt_field_type_enumeration_find_mappings_type( type, ITERATOR_BY_NAME); if (!iter) { - BT_LOGE("Cannot create enumeration field type mapping iterator: " + BT_LOGW("Cannot create enumeration field type mapping iterator: " "ft-addr=%p, mapping-name=\"%s\"", type, name); goto error; } @@ -1362,7 +1362,7 @@ bt_field_type_enumeration_find_mappings_by_signed_value( iter = bt_field_type_enumeration_find_mappings_type( type, ITERATOR_BY_SIGNED_VALUE); if (!iter) { - BT_LOGE("Cannot create enumeration field type mapping iterator: " + BT_LOGW("Cannot create enumeration field type mapping iterator: " "ft-addr=%p, value=%" PRId64, type, value); goto error; } @@ -1391,7 +1391,7 @@ bt_field_type_enumeration_find_mappings_by_unsigned_value( iter = bt_field_type_enumeration_find_mappings_type( type, ITERATOR_BY_UNSIGNED_VALUE); if (!iter) { - BT_LOGE("Cannot create enumeration field type mapping iterator: " + BT_LOGW("Cannot create enumeration field type mapping iterator: " "ft-addr=%p, value=%" PRIu64, type, value); goto error; } @@ -2496,7 +2496,7 @@ struct bt_field_type *bt_field_type_variant_get_field_type_from_tag( iter = bt_field_enumeration_get_mappings(tag); ret = bt_field_type_enumeration_mapping_iterator_next(iter); if (!iter || ret) { - BT_LOGE("Cannot get enumeration field type mapping iterator from enumeration field: " + BT_LOGW("Cannot get enumeration field type mapping iterator from enumeration field: " "enum-field-addr=%p", tag); goto end; }