summaryrefslogtreecommitdiffstats
path: root/mandoc.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-14 17:54:42 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-14 17:54:42 +0000
commitc6f3075846c286cebabf731303d52660dd30afe8 (patch)
tree7fc3844d639c5d82fd378b30e3461c0fc7f04174 /mandoc.c
parent121fc3d4eff42f9400d7e165b83c068757148a7b (diff)
downloadmandoc-c6f3075846c286cebabf731303d52660dd30afe8.tar.gz
Make character engine (-Tascii, -Tpdf, -Tps) ready for Unicode: make buffer
consist of type "int". This will take more work (especially in encode and friends), but this is a strong start. This commit also consists of some harmless lint fixes.
Diffstat (limited to 'mandoc.c')
-rw-r--r--mandoc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mandoc.c b/mandoc.c
index 08710780..4a9be8e7 100644
--- a/mandoc.c
+++ b/mandoc.c
@@ -704,7 +704,7 @@ mandoc_strntou(const char *p, size_t sz, int base)
return(-1);
memcpy(buf, p, sz);
- buf[sz] = '\0';
+ buf[(int)sz] = '\0';
errno = 0;
v = strtol(buf, &ep, base);