summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2022-11-26 16:55:47 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2022-11-26 16:55:47 +0000
commit764fca4f3abfc7437003f496d52039ad7e6b779d (patch)
tree0a20c21943bbe5ce1c05a89d852c7a0fb6104315 /utils
parent0c25ae5e8eb38b3b888a9bfdc0fcc6d53af17b04 (diff)
downloadnetsurf-764fca4f3abfc7437003f496d52039ad7e6b779d.tar.gz
netsurf-764fca4f3abfc7437003f496d52039ad7e6b779d.tar.bz2
utils/utf8.c: Fix missing format string for snprintf
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'utils')
-rw-r--r--utils/utf8.c2
1 files changed, 1 insertions, 1 deletions
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;