From: Fabian Keil <fk@fabiankeil.de>
Date: Tue, 19 May 2009 17:44:22 +0000 (+0000)
Subject: Fix clang warning: Value stored to 'hits' is never read.
X-Git-Tag: v_3_0_13~84
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/static/man-page/static/gitweb.js?a=commitdiff_plain;h=94b88f2d5fb154b50a4f9f43a05fd5c765fcb4bb;p=privoxy.git

Fix clang warning: Value stored to 'hits' is never read.
---

diff --git a/pcrs.c b/pcrs.c
index 9b2cfb9a..2e044520 100644
--- a/pcrs.c
+++ b/pcrs.c
@@ -1,4 +1,4 @@
-const char pcrs_rcs[] = "$Id: pcrs.c,v 1.30 2009/05/16 13:27:20 fabiankeil Exp $";
+const char pcrs_rcs[] = "$Id: pcrs.c,v 1.31 2009/05/19 17:42:32 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/pcrs.c,v $
@@ -682,7 +682,7 @@ int pcrs_execute_list(pcrs_job *joblist, char *subject, size_t subject_length, c
  
    old = subject;
    *result_length = subject_length;
-   hits = total_hits = 0;
+   total_hits = 0;
 
    for (job = joblist; job != NULL; job = job->next)
    {