From f2557c9885b244d4abdad8428c91584906194640 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 9 Aug 2020 19:50:19 +0200 Subject: [PATCH] [python] Compilation warning --- src/scripting/python/hooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/python/hooks.c b/src/scripting/python/hooks.c index 7cba0733..4615e188 100644 --- a/src/scripting/python/hooks.c +++ b/src/scripting/python/hooks.c @@ -218,7 +218,7 @@ script_hook_pre_format_html(va_list ap, void *data) mem_free(dec_data); goto error; } - inbuf = str; + inbuf = (char *)str; outbuf = dec_data; ileft = len; oleft = len * 4;