From 0b3c51a627189ae9f63bdcd35fee5889feda50cc Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 19 May 2009 17:44:54 +0000 Subject: [PATCH] Fix clang warning: Value stored to 'i' is never read. --- pcrs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcrs.c b/pcrs.c index 2e044520..c513251a 100644 --- a/pcrs.c +++ b/pcrs.c @@ -1,4 +1,4 @@ -const char pcrs_rcs[] = "$Id: pcrs.c,v 1.31 2009/05/19 17:42:32 fabiankeil Exp $"; +const char pcrs_rcs[] = "$Id: pcrs.c,v 1.32 2009/05/19 17:44:22 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/pcrs.c,v $ @@ -481,7 +481,7 @@ pcrs_job *pcrs_compile_command(const char *command, int *errptr) char *tokens[4]; pcrs_job *newjob; - i = k = l = 0; + k = l = 0; /* * Tokenize the perl command -- 2.39.2