From 764fca4f3abfc7437003f496d52039ad7e6b779d Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 26 Nov 2022 16:55:47 +0000 Subject: utils/utf8.c: Fix missing format string for snprintf Signed-off-by: Daniel Silverstone --- utils/utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utf8.c b/utils/utf8.c index 84918cc65..7091ad405 100644 --- a/utils/utf8.c +++ b/utils/utf8.c @@ -185,7 +185,7 @@ get_cached_cd(const char *enc_from, const char *enc_to, iconv_t *cd_out) } /* and safely copy the to/from/cd data into last_cd */ - snprintf(last_cd.from, sizeof(last_cd.from), enc_from); + snprintf(last_cd.from, sizeof(last_cd.from), "%s", enc_from); snprintf(last_cd.to, sizeof(last_cd.to), "%s", enc_to); *cd_out = last_cd.cd = cd; -- cgit v1.2.1