From f66efec82a6bd567f6eac5a693e5bd0e7307062a Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 11 Sep 2020 13:34:22 +0200 Subject: [PATCH 1/1] gif_deanimate_response(): Fix format specifiers in a log message --- filters.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/filters.c b/filters.c index cae3c846..6945d2f6 100644 --- a/filters.c +++ b/filters.c @@ -1959,7 +1959,8 @@ static char *gif_deanimate_response(struct client_state *csp) } else { - log_error(LOG_LEVEL_DEANIMATE, "Success! GIF shrunk from %d bytes to %d.", size, out->offset); + log_error(LOG_LEVEL_DEANIMATE, + "Success! GIF shrunk from %lu bytes to %lu.", size, out->offset); } csp->content_length = out->offset; csp->flags |= CSP_FLAG_MODIFIED; -- 2.39.2