From: Fabian Keil Date: Tue, 19 May 2009 17:47:22 +0000 (+0000) Subject: Fix clang warning: Value stored to ch is never read. X-Git-Tag: v_3_0_13~80 X-Git-Url: http://www.privoxy.org/gitweb/installation.html?a=commitdiff_plain;h=21b1aa1e2548be610737df323e06f2751358678d;p=privoxy.git Fix clang warning: Value stored to ch is never read. --- diff --git a/errlog.c b/errlog.c index 0e412621..7ffc7d15 100644 --- a/errlog.c +++ b/errlog.c @@ -1,4 +1,4 @@ -const char errlog_rcs[] = "$Id: errlog.c,v 1.92 2009/03/20 03:39:31 ler762 Exp $"; +const char errlog_rcs[] = "$Id: errlog.c,v 1.93 2009/05/16 13:27:20 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/errlog.c,v $ @@ -751,7 +751,7 @@ void log_error(int loglevel, const char *fmt, ...) { unsigned long long lluval = va_arg(ap, unsigned long long); snprintf(tempbuf, sizeof(tempbuf), "%llu", lluval); - ch = *src++; + src++; } else {