{
const struct lttng_basic_type *elem_type = &field->type.u.array.elem_type;
- if (elem_type != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
+ if (elem_type->atype != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
return -EINVAL;
op->op = FILTER_OP_LOAD_FIELD_REF_SEQUENCE;
break;
{
const struct lttng_basic_type *elem_type = &field->type.u.sequence.elem_type;
- if (elem_type != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
+ if (elem_type->atype != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
return -EINVAL;
op->op = FILTER_OP_LOAD_FIELD_REF_SEQUENCE;
break;
{
const struct lttng_basic_type *elem_type = &ctx_field->event_field.type.u.array.elem_type;
- if (elem_type != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
+ if (elem_type->atype != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
return -EINVAL;
op->op = FILTER_OP_GET_CONTEXT_REF_STRING;
break;
{
const struct lttng_basic_type *elem_type = &ctx_field->event_field.type.u.sequence.elem_type;
- if (elem_type != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
+ if (elem_type->atype != atype_integer || elem_type->u.basic.integer.encoding == lttng_encode_none)
return -EINVAL;
op->op = FILTER_OP_GET_CONTEXT_REF_STRING;
break;