EDC7010E
paren_pair imbalance.

Explanation

The re_comp() function detected an error in the input regular expression. The character sequences \( (left parenthesis) were found without a matching \) (right parenthesis), or vice versa.

System action

The re_comp() function returns with a pointer to this error message. The application continues to run.

Programmer response

Correct the regular expression pattern and retry the re_comp().

Symbolic Feedback Code

EDC6R2