gif_deanimate_response(): Fix format specifiers in a log message
authorFabian Keil <fk@fabiankeil.de>
Fri, 11 Sep 2020 11:34:22 +0000 (13:34 +0200)
committerFabian Keil <fk@fabiankeil.de>
Fri, 11 Sep 2020 14:35:40 +0000 (16:35 +0200)
filters.c

index cae3c84..6945d2f 100644 (file)
--- 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;