From: Fabian Keil Date: Fri, 11 Sep 2020 11:30:49 +0000 (+0200) Subject: pcrs_filter_response(): Fix format specifiers in a log message X-Git-Tag: v_3_0_29~144 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=fc4b3fb95f0c3fad1619b5c7f533632be91d42dc pcrs_filter_response(): Fix format specifiers in a log message --- diff --git a/filters.c b/filters.c index 2c9c352a..973c5d10 100644 --- a/filters.c +++ b/filters.c @@ -1657,7 +1657,7 @@ static char *pcrs_filter_response(struct client_state *csp) if (b->dynamic) pcrs_free_joblist(joblist); log_error(LOG_LEVEL_RE_FILTER, - "filtering %s%s (size %d) with \'%s\' produced %d hits (new size %d).", + "filtering %s%s (size %lu) with \'%s\' produced %d hits (new size %lu).", csp->http->hostport, csp->http->path, prev_size, b->name, current_hits, size); #ifdef FEATURE_EXTENDED_STATISTICS update_filter_statistics(b->name, current_hits);