aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit46b6fb73529e79de5452e9d25e26a7c8b83bd79f (patch)
tree9fdb49fd81c23696e74be71a6af9c0ad9db52d88 /mandoc.c
parente3ef897e17cf74a686ec213e362a869d4a9b77f0 (diff)
downloadmandoc-46b6fb73529e79de5452e9d25e26a7c8b83bd79f.tar.gz
mandoc-46b6fb73529e79de5452e9d25e26a7c8b83bd79f.tar.zst
mandoc-46b6fb73529e79de5452e9d25e26a7c8b83bd79f.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mandoc.c b/mandoc.c
index 249a0dea..671f059a 100644
--- a/mandoc.c
+++ b/mandoc.c
@@ -1,4 +1,4 @@
-/* $Id: mandoc.c,v 1.50 2011/05/14 16:06:09 kristaps Exp $ */
+/* $Id: mandoc.c,v 1.51 2011/05/14 17:54:42 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -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);