From a270dd6e242772072dcc4f4f59f08d5fe0a74c56 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Thu, 13 Sep 2018 13:56:07 +0100 Subject: [PATCH] [Minor] Fix format string --- src/libserver/html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libserver/html.c b/src/libserver/html.c index 79d4eebb38..9e73b6f3ea 100644 --- a/src/libserver/html.c +++ b/src/libserver/html.c @@ -2012,7 +2012,7 @@ rspamd_html_process_style (rspamd_mempool_t *pool, struct html_block *bl, g_ascii_strncasecmp (key, "font-size", 9) == 0) { rspamd_html_process_font_size (c, p - c, &bl->font_size, TRUE); - msg_debug_html ("got font size: %u", bl->font_size); + msg_debug_html ("got font size: %ud", bl->font_size); } else if (klen == 7 && g_ascii_strncasecmp (key, "opacity", 7) == 0) { -- 2.47.3