Skip to content

Commit

Permalink
There is an |= operator. Use it here.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggreer committed Mar 19, 2012
1 parent 6c5e914 commit accf146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Expand Up @@ -54,7 +54,7 @@ int main(int argc, char **argv) {
int has_jit = 0;
pcre_config(PCRE_CONFIG_JIT, &has_jit);
if (has_jit) {
study_opts = study_opts | PCRE_STUDY_JIT_COMPILE;
study_opts |= PCRE_STUDY_JIT_COMPILE;
}
#endif

Expand Down

0 comments on commit accf146

Please sign in to comment.