From accf1469b51e35d5dfddb0c799c50b68c495681f Mon Sep 17 00:00:00 2001 From: Geoff Greer Date: Sun, 18 Mar 2012 22:14:55 -0700 Subject: [PATCH] There is an |= operator. Use it here. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 33592ad80..909b42792 100644 --- a/src/main.c +++ b/src/main.c @@ -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