summaryrefslogtreecommitdiffstats
path: root/tbl_opts.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-03-15 16:23:51 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-03-15 16:23:51 +0000
commit792762cbb772aaf51b391b8c492fc1285528dd88 (patch)
tree8886ac7ff1741e71906364d4357fc63ce7f6e2b6 /tbl_opts.c
parent87d72e07e9c7935f4db2f36c4fc32716cd34b865 (diff)
downloadmandoc-792762cbb772aaf51b391b8c492fc1285528dd88.tar.gz
Make lint shut up a little bit.
Diffstat (limited to 'tbl_opts.c')
-rw-r--r--tbl_opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_opts.c b/tbl_opts.c
index 28b658f7..c8c2f71e 100644
--- a/tbl_opts.c
+++ b/tbl_opts.c
@@ -188,7 +188,7 @@ again: /*
/* Copy up to first non-alpha character. */
for (sv = *pos, i = 0; i < KEY_MAXNAME; i++, (*pos)++) {
- buf[i] = tolower((unsigned char)p[*pos]);
+ buf[i] = (char)tolower((unsigned char)p[*pos]);
if ( ! isalpha((unsigned char)buf[i]))
break;
}