diff options
author | Beat Bolli <dev+git@drbeat.li> | 2019-07-22 20:19:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-07-23 19:36:09 +0200 |
commit | f00253278481ea7d1d7bf3127aba9b529da34009 (patch) | |
tree | 079e6b57772520663843539836d035552152600e /grep.c | |
parent | Git 2.20.1 (diff) | |
download | git-f00253278481ea7d1d7bf3127aba9b529da34009.tar.xz git-f00253278481ea7d1d7bf3127aba9b529da34009.zip |
grep: print the pcre2_jit_on value
When pcre2_jit_on is neither 1 nor 0, the BUG() call printed the value
of pcre1_jit_on.
Print the value of pcre2_jit_on instead.
Signed-off-by: Beat Bolli <dev+git@drbeat.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'grep.c')
-rw-r--r-- | grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -559,7 +559,7 @@ static void compile_pcre2_pattern(struct grep_pat *p, const struct grep_opt *opt pcre2_jit_stack_assign(p->pcre2_match_context, NULL, p->pcre2_jit_stack); } else if (p->pcre2_jit_on != 0) { BUG("The pcre2_jit_on variable should be 0 or 1, not %d", - p->pcre1_jit_on); + p->pcre2_jit_on); } } |