diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-15 16:23:51 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-15 16:23:51 +0000 |
commit | 792762cbb772aaf51b391b8c492fc1285528dd88 (patch) | |
tree | 8886ac7ff1741e71906364d4357fc63ce7f6e2b6 /mdoc_validate.c | |
parent | 87d72e07e9c7935f4db2f36c4fc32716cd34b865 (diff) | |
download | mandoc-792762cbb772aaf51b391b8c492fc1285528dd88.tar.gz |
Make lint shut up a little bit.
Diffstat (limited to 'mdoc_validate.c')
-rw-r--r-- | mdoc_validate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mdoc_validate.c b/mdoc_validate.c index 18634276..3f845317 100644 --- a/mdoc_validate.c +++ b/mdoc_validate.c @@ -2127,7 +2127,8 @@ post_bx(POST_ARGS) n = mdoc->last->child; if (n && NULL != (n = n->next)) - *n->string = toupper((unsigned char)*n->string); + *n->string = (char)toupper + ((unsigned char)*n->string); return(1); } |