parser: Use correct union member

This commit is contained in:
Laria 2023-02-10 21:40:31 +01:00
parent 76cf60d20f
commit 0dd27b7046

View file

@ -2105,8 +2105,8 @@ parse_fragment(apfl_parser_ptr p, struct fragment *fragment, bool need, enum par
fragment->type = FRAG_PREDICATE;
fragment->position = token_pos;
fragment->at.lhs = lhs;
fragment->at.rhs = rhs;
fragment->predicate.lhs = lhs;
fragment->predicate.rhs = rhs;
}
break;