[Privoxy-commits] [privoxy] 28/38: pcrs_compile(): Prevent unused-variable warning when compiling with DISABLE_PCRE_JIT_COMPILATION defined
User Git
git at git.privoxy.org
Thu Apr 9 09:37:26 CEST 2026
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit b50f826541da0449b08707cc7fc711ca1ca9e604
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu Apr 2 14:27:09 2026 +0200
pcrs_compile(): Prevent unused-variable warning when compiling with DISABLE_PCRE_JIT_COMPILATION defined
---
pcrs.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/pcrs.c b/pcrs.c
index 8c04c3a2..cfaf8571 100644
--- a/pcrs.c
+++ b/pcrs.c
@@ -615,7 +615,9 @@ pcrs_job *pcrs_compile(const char *pattern, const char *substitute, const char *
pcrs_job *newjob;
unsigned int flags;
int capturecount;
+#ifndef DISABLE_PCRE_JIT_COMPILATION
int ret;
+#endif
*errptr = 0;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list