From: Fabian Keil Date: Fri, 11 Sep 2020 12:02:49 +0000 (+0200) Subject: load_one_re_filterfile(): Fix format specifier in a log message X-Git-Tag: v_3_0_29~130 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=449cdcdf69fd5253949b091965c83d614c5f61ff load_one_re_filterfile(): Fix format specifier in a log message --- diff --git a/loaders.c b/loaders.c index 654a1b9f..47122954 100644 --- a/loaders.c +++ b/loaders.c @@ -1325,7 +1325,8 @@ int load_one_re_filterfile(struct client_state *csp, int fileid) } else { - log_error(LOG_LEVEL_ERROR, "Ignoring job %s outside filter block in %s, line %d", + log_error(LOG_LEVEL_ERROR, + "Ignoring job %s outside filter block in %s, line %lu", buf, csp->config->re_filterfile[fileid], linenum); } freez(buf);